Skip to content

geochip/todoapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

To Do App

screenshot

A simple full-stack todo application with registration in python using django.

Getting started (locally with development server)

Clone the repository.

git clone https://github.com/GeoCHiP/todoapp.git
cd todoapp/

Create and activate a python virtual environment.

python -m venv .venv
source .venv/bin/activate

Install the dependencies.

pip install -r requirements.txt

Create the database.

python manage.py migrate

Run the development server.

python manage.py runserver