diff --git a/README.md b/README.md index f8fe34c..c1f2c0c 100644 --- a/README.md +++ b/README.md @@ -36,14 +36,6 @@ Load test data: Retrieve remote data: -```shell -env DB_NAME=covid19_test ./manage.py fetch_covid_active_cases -``` - -## Tasks - -Retrieve remote data: - ```shell ./manage.py fetch_covid_active_cases ``` @@ -53,7 +45,7 @@ Retrieve remote data: Run a development server: ```shell -env DEBUG=True ./manage.py runserver +./manage.py runserver ``` To add, remove or upgrade a requirement, [follow these instructions](https://ocp-software-handbook.readthedocs.io/en/latest/python/applications.html#requirements). diff --git a/covidadmin/settings.py b/covidadmin/settings.py index d8b7cb8..3712141 100644 --- a/covidadmin/settings.py +++ b/covidadmin/settings.py @@ -20,7 +20,7 @@ env = environ.Env( # set casting, default value SECRET_KEY=(str, "ig0(igk8+n76thmh-@%*n4bc1ra3sq-#x)kx6bqf&zdh9n1*+8"), - DEBUG=(bool, False), + DEBUG=(bool, True), ALLOWED_HOSTS=(list, []), DB_ENGINE=(str, "django.db.backends.postgresql_psycopg2"), DB_NAME=(str, "covid19"),