From 1d6dbbd33071b6c536ad261c56459b2aa8fa89cf Mon Sep 17 00:00:00 2001 From: Clemens Wolff Date: Sat, 23 Jun 2018 20:22:50 -0400 Subject: [PATCH] Remove outdated project name from description --- README.rst | 19 ++++++++++--------- setup.py | 2 +- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/README.rst b/README.rst index f06fe5cd..8c6e3d99 100644 --- a/README.rst +++ b/README.rst @@ -13,9 +13,10 @@ Opwen cloudserver What's this? ------------ -This repository contains the source code for the Opwen cloud server. Its purpose -is to connect the `application `_ -running on the Opwen Lokole devices to the rest of the world. +This repository contains the source code for the Lokole cloud server. Its +purpose is to connect the `application `_ +running on the Lokole devices to the rest of the world. Lokole is a project +by the Canadian-Congolese non-profit `Ascoderu `_. The server has two main responsibilities: @@ -35,10 +36,10 @@ System overview Data exchange format -------------------- -In order to communicate between the Opwen cloud server and the Opwen -web-application (aka Lokole), a protocol based on gzipped jsonl files uploaded -to Azure Blob Storage is used. The files contains a JSON object per line. -Each JSON object describes an email, using the following schema: +In order to communicate between the Lokole cloud server and the Lokole email +application, a protocol based on gzipped jsonl files uploaded to Azure Blob +Storage is used. The files contains a JSON object per line. Each JSON object +describes an email, using the following schema: .. sourcecode :: json @@ -98,7 +99,7 @@ to initialize the required cloud resources. .. sourcecode :: sh - docker build -t opwenserversetup -f docker/setup/Dockerfile . + docker build -t setup -f docker/setup/Dockerfile . docker run \ -e SP_APPID={appId field of your service principal} \ @@ -109,7 +110,7 @@ to initialize the required cloud resources. -e RESOURCE_GROUP_NAME={the name of the resource group to create or reuse} \ -e SENDGRID_KEY={the sendgrid key you created earlier} \ -v ${PWD}/secrets:/secrets \ - opwenserversetup + setup The secrets to access the Azure resources created by the setup script will be stored in files in the :code:`secrets` directory. Other parts of the diff --git a/setup.py b/setup.py index 88035f47..93cfcf4c 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ packages=packages, url='https://github.com/ascoderu/opwen-cloudserver', license='Apache Software License', - description='Email server for the Opwen project', + description='Email server for the Lokole project: https://ascoderu.ca', long_description=long_description, scripts=scripts, include_package_data=True,