This Django application is to exemplify how important is including tests in our software projects.
The application has been copied from hjwp/book-example. The application is a website where users can create and share TODO lists.
## Install dependencies
For Production or Development environment:
pip3 install -r requirements.txt
For testing environment:
pip3 install -r requirements-test.txt
## Prepare the database: To initialize the database execute:
python3 manage.py migrate
## Run server To run the server execute:
python3 manage.py runserver 0.0.0.0:8000
Bug reports and pull requests are welcome on GitHub at https://github.com/tgndevs/superlists/issues and https://github.com/tgndevs/superlists/pulls. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The repository is available as open source under the terms of the GPL License.