This a web application where a user can login and create the tasks, this was built with the Django web application framework
A running instance of it can be found at " https://my--todo.herokuapp.com/ ".
py -m pip install --user virtualenv
py -m venv env
.\env\Scripts\activate
python3 -m pip install --user virtualenv
python3 -m venv env
source env/bin/activate
deactivate
git clone https://github.com/Saketh-Chandra/My_ToDO.git
cd My_ToDO
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
In production, Django uses a WSGI server such as Gunicorn and a web server such as Nginx.
## .env file, Don't Share it with anyone!
SECRET_KEY='e^$9mt#)3niaz9b9pyxc1x(53&qq1^@iuy2)=5hhji1t+*o_0$'
DEBUG=False
## Super-User Credentials
SUPER_USER_NAME = 'root'
SUPER_USER_PASSWORD = 'root'
SUPER_USER_EMAIL = 'admin@email.com'
git clone https://github.com/Saketh-Chandra/My_ToDO.git
cd My_ToDO
docker-compose up -d
Run services in the background:
docker-compose up -d
Run services in the foreground:
docker-compose up --build
Inspect volume:
docker volume ls
and
docker volume inspect my_todo_static
View networks:
docker network ls
Bring services down:
docker-compose down
All contributions are welcome! Code, documentation, graphics or even design suggestions are welcome; use GitHub to its fullest. Submit pull requests, contribute tutorials or other wiki content -- whatever you have to offer, it would be appreciated!
Please read CONTRIBUTING.md for details on contributing.
This project is licensed under the MIT License - see the LICENSE file for details.
See the full list of contributors who participated in this project and statistics.
Please read Prerequisite file for details.
Check the changelog here.
Report here in detail answering these questions:
- What steps did you take to make the bug appear?
- How can the bug be fixed? (In case you know)
- Which OS and which all packages / softwares / dependencies are you using?
- Have you tried any troubleshooting steps such as a reboot for example?
- Have you followed the prescribed prerequisites?
Check here for the list of contributors. Contact one of them through their profiles.