Skip to content

Files

Latest commit

author
dhope-nagesh
Jan 9, 2018
58cfcab · Jan 9, 2018

History

History
20 lines (17 loc) · 381 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 381 Bytes

database-orm

Prerequisite

  • Install Mysql 5.6 server or latest

Database Setup

$ mysql -uroot -p
mysql> create datatbase database_orm;

Django Project setup

$ git clone git@github.com:hashedin/database-orm.git
$ cd database-orm
$ virtualenv -p python .venv
$ source .venv/bin/activate
$ pip install -r requirements.txt
$ python manage.py migrate