Skip to content

AleejandroReyna/django-todolist

Repository files navigation

DJANGO TODOLIST

This is a simple todo list project with django!

Get started!

Step by Step guide to run Django Todo list

Step 01:

Clone the repo here.

Step 02:

Clone the submodules. Guide here

Step 03:

Give me a star on Github .

With Docker Compose (Recommended method)

Step 04:

Install Docker

Step 05:

Copy .env.example and rename to .env

Step 06:

Set values for .env file (Instructions in file)

Final Step:

Run docker-compose up and that's all!

Manual Installation

Step 04:

Install Python and VirtualEnv for run this project.

Step 05:

Generate virtualenv for project using python3 -venv ./venv

Step 06:

Activate virtualenv for project. (source venv/bin/activate on linux or macOS, .\venv\Scripts\activate on Windows.)

Step 07:

Install the dependencies in requirements.txt

Step 08:

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).

Step 09:

Run the command: python manage.py migrate

Final Step:

That's all! Run the command python manage.py runserver