Setup a dev environment#
A running local instance for development can be spun up via docker compose which will install and configure all deps in separate container. As such your computer should only need:
If docker compose give you trouble, make sure it can connect to the docker daemon.
If you use an Apple Silicon Mac, ensure export DOCKER_DEFAULT_PLATFORM=linux/amd64
is set.
A pgdata-iaso
folder, containing the database data, will be created in the parent directory of the git repository.
1. Environment variables#
The docker-compose.yml file contains sensible defaults for the Django application.
Other environment variables can be provided by a .env file.
As a starting point, you can copy the sample .env.dist file and edit it to your needs.
cp .env.dist .env
note: All the commands here need to be run in the project directory in which the repository was cloned
2. Build the containers#
This will build and download the containers.
docker compose build
3. Start the database#
docker compose up db
4. Run migrations#
docker compose run --rm iaso manage migrate
If you get a message saying that the database iaso does not exist, you can connect to your postgres instance using
psql -h localhost -p 5433 -U postgres
then type
create database iaso;
to create the missing database.
5. Start the server#
To start all the containers (backend, frontend, db)
docker compose up
The web server will be reachable at http://localhost:8081
.
The docker-compose.yml
file describes the setup of the containers.
6. Create a superuser#
To login to the app or the Django admin, a superuser needs to be created with:
docker compose exec iaso ./manage.py createsuperuser
You can now login in the admin at http://localhost:8081/admin
.
Then additional users with custom groups and permissions can be added through the Django admin or loaded via fixtures.
7. Create and import data#
To create the initial account, project and profile, do the following:
docker compose exec iaso ./manage.py create_and_import_data
You can now login on http://localhost:8081
but still need to import your own data.
An alternative to this and the following steps is to import data from DHIS2.
8. Create a form#
Run the following command to create a form:
docker compose exec iaso ./manage.py create_form
At this point, if you want to edit forms directly on your machine using Enketo, go to the Enketo setup section of this README (down below).
Once you are done, you can click on the eye for your newly added form, click on "+ Create", tap a letter, then enter, select the org unit, then click "Create submission".
If Enketo is running and well setup, you can fill the form now.
9. Start adding features#
You can now start to develop additional features on Iaso!
10. Import OrgUnit, Forms and Submission from DHIS2#
Alternatively or in addition to steps 7-8, you can import data from the DHIS2 demo server (play.dhis2.org):
docker compose run --rm iaso manage seed_test_data --mode=seed --dhis2version=2.35.3
The hierarchy of OrgUnit, group of OrgUnit, Forms, and their Submissions will be imported. OrgUnit types are not handled at the moment
Log in to http://127.0.0.1:8081/dashboard with :
- user : testemail2.35.3
- password: testemail2.35.3
11. Enketo#
To submit and edit existing form submission from the browser, an Enketo service is needed.
To enable the Enketo editor in your local environment, include the additional docker compose configuration file for Enketo. Do so by invoking docker compose with both files.
docker compose -f docker-compose.yml -f docker/docker-compose-enketo.yml up
No additional configuration is needed. The first time the docker image is launched, it will download dependencies and do a build witch may take a few minutes. Subsequents launches are faster.
You can check that the server is correctly launched by going to http://localhost:8005
To seed your DB with typical example forms editable by Enketo, see import data from DHIS2
12. Database dump#
To create a copy of your iaso database in a file (dump) you can use:
docker compose exec db pg_dump -U postgres iaso -Fc > iaso.dump
The dumpfile will be created on your host. The -Fc
meant it will use an optimised Postgres format (which take less place). If you want the plain sql command use -Fp
13. Restore database from dump#
- Ensure the database server is running but not the rest. Close your docker compose, ensure it is down with
docker compose down
- Launch the database server with
docker compose up db
- Choose a name for you database. In this example it will be
iaso5
You can list existing databases usingdocker compose exec db psql -U postgres -l
- Create the database
docker compose exec db psql -U postgres -c "create database iaso5"
- Restore the dump file to put the data in your database
cat iaso.dump | docker compose exec -T db pg_restore -U postgres -d iaso5 -Fc --no-owner /dev/stdin
- Edit your
.env
file to use to this database in theRDS_DB_NAME
settings. - Start Iaso. Cut your docker compose (see 0) and relaunch it fully. Warning: Modification in your .env file are not taken into account unless you entirely stop your docker compose
14. Health#
On the /health/ url you can find listed the Iaso version number, environment, deployment time, etc... that might help you understand how this server instance is deployed for debugging. e.g. https://iaso.bluesquare.org/health/
15. Set up a local DHIS2 server#
Experimental. For development if you need a local dhis2 server, you can spin up one in your docker compose by using the docker/docker-compose-dhis2.yml
configuration file.
Replace your invocations of docker compose
by docker compose -f docker-compose.yml -f docker/docker-compose-dhis2.yml
you need to specify both config files. e.g to launch the cluster:
docker compose -f docker-compose.yml -f docker/docker-compose-dhis2.yml up
The DHIS2 will be available on your computer on http://localhost:8080 and is reachable from Iaso as http://dhis2:8080. The login and password are admin / district. If you use it as an import source do not set a trailing /
Database file are stored in ../pgdata-dhis2
and dhis2 log and uploaded files in docker/DHIS2_home
.
16. Sample dhis2 database#
You will probably require some sample data in your instance. It is possible to populate your DHIS2 server with sample data from a database dump like it's done for the official play servers. The DHIS2 database take around 3 GB.
The steps as are follow: Download the file, stop all the docker, remove the postgres database directory, start only the database docker, load the database dump and then restart everything.
wget https://databases.dhis2.org/sierra-leone/2.36.4/dhis2-db-sierra-leone.sql.gz
docker compose down
sudo rm ../pgdata-dhis2 -r
docker compose up db_dhis2
zcat dhis2-db-sierra-leone.sql.gz| docker compose exec -T db_dhis2 psql -U dhis dhis2 -f /dev/stdin
docker compose up
cd Projects/blsq/iaso
docker compose up dhis2 db_dhis2
17. Set up Single Sign On (SSO) with a local DHIS2#
If you want to test the feature with your local dhis2 you can use the following step. This assume you are running everything in Docker containers
- Launch DHIS2 with iaso within docker compose
docker compose -f docker-compose.yml -f docker/docker-compose-dhis2.yml up
With the default docker compose setup, iaso is on port 8081 and dhis2 on port 8081 on your machine - These step assume you have loaded your DHIS2 with the play test data but it's not mandatory. To see how to do it, look at previous section
- Configure an Oauth client in DHIS2: open http://localhost:8080/dhis-web-settings/index.html#/oauth2
- Add new client:
- Name : what you want
- ClientId: What you want (must be the same as your external credential in Iaso)
- Client Secret : there is one generated, copy it and save it for a latter step
- Grant Type: check Authorization code
-
Redirect URI : http://localhost:8081/api/dhis2/{same as client id}/login/
-
Setup external credential in iaso
- open admin http://localhost:8081/admin/
- go to External Credentials | http://localhost:8081/admin/iaso/externalcredentials/
- Add external credentials on the top right | http://localhost:8081/admin/iaso/externalcredentials/add/
- Account: The account for which you want to enable dhis2 auth
- Name : Same as DHIS2 Client ID
- Login : http://dhis2:8080/
- Password: the client secret you saved in step 2
- Url: http://localhost:8081/
5 Create a new user in Iaso, grant it some rights
-
In DHIS2 retrieve the id for the user
- Current way I have found it is to go to http://localhost:8080/api/me and copy the id field
- But you can also find a user here and it's in the url http://localhost:8080/dhis-web-user/index.html#/users
-
Add the dhis2 id to the Iaso user : Open the target user in the iaso Admin http://localhost:8081/admin/iaso/profile/ and add it to the dhis2 id field, save.
-
Unlog from iaso or in a separate session/container
- Try the feature by opening : http://localhost:8080/uaa/oauth/authorize?client_id={your_dhis2_client_id}&response_type=code
18. Test forms from Iaso mobile application#
1 - Setup Ngrok#
Download and setup Ngrok on https://ngrok.com/. Once Ngrok installed and running you must add your ngrok server url
in settings.py
by adding the following line :
FILE_SERVER_URL = os.environ.get("FILE_SERVER_URL", "YOUR_NGROK_SERVER_URL")
After this step you have to import settings.py
and add FILE_SERVER_URL
to forms.py
in iaso/models/forms as
shown on the following lines :
"file": settings.FILE_SERVER_URL + self.file.url,
"xls_file": settings.FILE_SERVER_URL + self.xls_file.url if self.xls_file else None
2 - Setup the mobile app#
Once Ngrok installed and running you have to run the app in developer mode (tap 10 times on the Iaso icon at start ) and connect the mobile app to your server by selecting the 3 dots in the top right corner and select "change server url". When connected to your server, refresh all data and your app will be ready and connected to your development server.
19. SSO with DHIS2#
You can use DHIS2 as identity provider to login on Iaso. It requires a little configuration on DHIS2 and Iaso in order to achieve that.
1 - Setup OAuth2 clients in DHIS2#
In DHIS2 settings you must setup your Iaso instance as Oauth2 Clients. Client ID and Grant types must be : * Client ID : What you want (Must be the same as your external credential name in Iaso) * Grant Types : Authorization code
Redirect URIs is your iaso server followed by : /api/dhis2/{your_dhis2_client_id}/login/
For example : https://myiaso.com/api/dhis2/dhis2_client_id/login/
2 - Configure the OAuth2 connection in Iaso#
In iaso you must setup your dhis2 server credentials.
To do so, go to /admin
and setup as follow :
- Name: {your_dhis2_client_id} ( It must be exactly as it is in your DHIS2 client_id and DHIS2 Redirect URIs)
- Login: Your DHIS2 url (Ex : https://sandbox.dhis2.org/ )
- Password: The secret provided by DHIS2 when you created your OAuth2 client.
- Url: Your Iaso Url (Ex: https://myiaso.com/)
Don't forget the /
at the end of the urls.
3. Workflow for Single Sign On as a sequence diagram#
20.Live Bluesquare components#
It is possible to configure the project to load a version of Bluesquare components from a local git repository instead of the one installed from a package. This enabled to develop feature necessitating modification in the components code.
To do so:
* place the repository in the parent repository of Iaso ../bluesquare-components/
* install the dependency for bluesquare-component by running npm install in its directory
* set the environment variable LIVE_COMPONENTS=true
* start your docker compose
cd ..
git clone git@github.com:BLSQ/bluesquare-components.git
cd bluesquare-components
npm install
cd ../iaso
LIVE_COMPONENTS=true docker compose up
This way the page will reload automatically if you make a change to the bluesquare-components code.
This functionality also works if you launch webpack outside of docker.
If you encounter any problem, first check that your repo is on the correct branch and the deps are up-to-date
21. Task worker#
In local development, you can run a worker for background tasks by using the command:
docker compose run iaso manage tasks_worker
Alternatively, you can call the url tasks/run_all
which will run all the pending tasks in queue.
22. Customization#
You can override default application title, logo and colors using the .env
file and specify those variables:
THEME_PRIMARY_COLOR="<hexa_color>"
THEME_PRIMARY_BACKGROUND_COLOR="<hexa_color>"
THEME_SECONDARY_COLOR="<hexa_color>"
APP_TITLE="<app_title>"
FAVICON_PATH="<path_in_static_folder>"
LOGO_PATH="<path_in_static_folder>"
SHOW_NAME_WITH_LOGO="<'yes' or 'no'>"
Those settings are optional and are using a default value if nothing is provided