Dashboarding of quarantine center capacity & utilization
License: | MIT |
---|
To create an superuser account, use this command:
$ python manage.py createsuperuser
The following details how to deploy this application.
Postgres container with GIS support
`
docker run --name=postgis -d -e POSTGRES_USER=<username> -e POSTGRES_PASS=<password> -e POSTGRES_DBNAME=<db_name> -p 5432:5432 kartoza/postgis:9.6-2.4
`
Export the database URL in your shell
`
export DATABASE_URL="postgres://<username>:<password>@localhost:5432/<db_name>"
`