Create cards and free your mind to focus. Put your tasks on a board.
- Developed with Python 3.8.10
- Django v4.0
- DB Adapter SQLite: does not require additional services
To avoid any compatibilites issues, you can use virtualenv
to run the project and install dependencies. Read more on https://docs.python.org/3.8/library/venv.html
-
Make sure you have installed
python
andpip
:sudo apt update && sudo apt install python3-pip
-
Install virtualenv
pip install virtualenv
-
Setup a virtualenv directory
virtualenv venv
-
Enable the virtualenv
source venv/bin/activate
-
Follow to Quick start guide bellow.
- OBS: To disable the virtualenv, just run:
deactivate
-
Clone the project and navigate to directory with
cd django-todo
-
Install dependencies running
pip install -r requirements.txt
-
Run
python manage.py migrate
to create the polls models. -
Start the development server running
python manage.py runserver
-
Visit http://127.0.0.1:8000/