A portfolio application made in django to manage tasks and increase productivity. To access click here: https://justdoit-todolist.herokuapp.com/
To access the API documentation click here: https://justdoit-todolist.herokuapp.com/api/v1/docs/
$ python -m venv env
$ source env/bin/activate
$ pip install -r requirements.txt
$ ./manage.py makemigrations
$ ./manage.py migrate
$ ./manage.py runserver
| Variable | Explanation |
|---|---|
| SECRET_KEY | This is used to provide cryptographic signing and should be set to a unique, unpredictable value. |
| DEBUG | Set boolean value True if you want see django debug responses. |
| ALLOWED_HOSTS | To run this project in local, set "*". |
| DATABASE_URL | postgres://<user_name>:<user_password>@localhost:5432/<database_name> |
| ALLOW_MEDIA | Boolean value. Use True if the project supports the use of media files |
See the LICENSE for details.