forked from toshnipiyush/database-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
dhope-nagesh
committed
Jan 9, 2018
1 parent
dfcabdc
commit 58cfcab
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,12 @@ | |
## Prerequisite | ||
- Install Mysql 5.6 server or latest | ||
|
||
## Database Setup | ||
```bash | ||
$ mysql -uroot -p | ||
mysql> create datatbase database_orm; | ||
``` | ||
|
||
## Django Project setup | ||
```bash | ||
$ git clone [email protected]:hashedin/database-orm.git | ||
|
@@ -11,10 +17,4 @@ $ virtualenv -p python .venv | |
$ source .venv/bin/activate | ||
$ pip install -r requirements.txt | ||
$ python manage.py migrate | ||
``` | ||
|
||
## Database Setup | ||
```bash | ||
$ mysql -uroot -p | ||
mysql> create datatbase database_orm; | ||
``` |