- Note: This app is tested on python 3.5.2, hence docs are as per same version
Requires PostGreSQL & Python
git clone https://github.com/bhaveshAn/todo-task.git
cd todo-task
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
- Create
stayabode
database in PostGreSQL
sudo -u postgres psql
CREATE USER john WITH PASSWORD 'start';
CREATE DATABASE stayabode WITH OWNER john;
- Run the DataBase Server
sudo service postgresql start
- Migrate Database
python manage.py migrate
- Create Super User
python manage.py createsuperuser
- Run the application server
python manage.py runserver