/todo-app

Primary LanguagePython

TODOAPP

  • Note: This app is tested on python 3.5.2, hence docs are as per same version

Installation

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

Running the Application

  1. Create stayabode database in PostGreSQL
sudo -u postgres psql
CREATE USER john WITH PASSWORD 'start';
CREATE DATABASE stayabode WITH OWNER john;
  1. Run the DataBase Server
sudo service postgresql start
  1. Migrate Database
python manage.py migrate
  1. Create Super User
python manage.py createsuperuser
  1. Run the application server
python manage.py runserver