The UNICEF/MoH Malawi COVID-19 Response SMS solution backend application with the RapidPro webhook endpoints.
How to Set up the development server
- Clone the application from Github
$ git clone https:/github.com/gcinnovate/malawi-covid.git
$ cd malawi-covid
- Create and activate virtual environment
$ python3 -m venv env
$ . env/bin/activate
- Install Dependencies
$ pip install -r requirements.txt
- Configuration The configurations for the application are made using environment variables. Refer to the config.py file for the environment variables to set.
$ export FLASK_APP=covid.py
$ export FLASK_CONFIG=default
$ export DEV_DATABASE_URL=postgresql://postgres:postgres@localhost/covid
- Migrate database
$ flask db upgrade
- Populate database with locations and police stations
$ flask initdb This runs the initdb command in the covid.py application script to initialize database with some data
- There are two commands available to help load some test data.
$ flask load_test_data
$ flask load_test_data2
You can use the --help option on each of the commands to see some arguments you can pass to the commands.
- To creating views to use as data sources, we use the following flask command
$ flask create-views
- Creating an admin user
$ flask create-user
- Running the application
$ flask run
$ celery worker -A celery_worker.celery --loglevel=info