This is a simple todo list project with django!
Step by Step guide to run Django Todo list
Clone the repo here.
Clone the submodules. Guide here
Give me a star on Github .
Install Docker
Copy .env.example
and rename to .env
Set values for .env file (Instructions in file)
Run docker-compose up
and that's all!
Install Python and VirtualEnv for run this project.
Generate virtualenv for project using python3 -venv ./venv
Activate virtualenv for project. (source venv/bin/activate
on linux or macOS, .\venv\Scripts\activate
on Windows.)
Install the dependencies in requirements.txt
Define environment variables described in .env.example in your environment. (You can use export MY_VARIABLE=my_value
on linux and macOS, set MY_VARIABLE=my_value
with CMD and $env:MY_VARIABLE=my_value
with Powershell).
Run the command: python manage.py migrate
That's all! Run the command python manage.py runserver