This is a simple Todo List project implemented using Python and Django framework. The project allows users to create, manage, and track their tasks in a convenient way.
- Clone the repository:
git clone https://github.com/your-username/Todo-list
- Change to the project's directory:
cd Todo-list
- Сopy .env_sample file with your examples of env variables to your .env file
- Once you're in the desired directory, run the following command to create a virtual environment:
python3 -m venv venv
- Activate the virtual environment:
On macOS and Linux:
source venv/bin/activate
On Windows:
venv\Scripts\activate
- Install the dependencies
pip install -r requirements.txt
- Set up the database:
Run the migrations
python manage.py migrate
- Start the development server
python manage.py runserver
- Access the website locally at http://localhost:8000.
Enjoy!