Skip to content

Commit

Permalink
Merge pull request #32 from agiliq/running_locally
Browse files Browse the repository at this point in the history
Added README to run the project locally
  • Loading branch information
shabda committed Mar 31, 2018
2 parents 1c9648b + f1d3131 commit d329eb7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions heroes_and_monsters/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## Running the project locally

You should follow these steps to run the project locally.

### Create a virtual environment

You should create a virtual environment, preferably with Python 3.6

If you use **virtualenvwrapper**, you could do:

mkvirtualenv --python=/usr/local/bin/python3 django-admin-cookbook

### Install the requirements

pip install -r requirements.txt

### Run migrations

python manage.py migrate

### Run server and access admin

python manage.py runserver

You can access admins at:

http://localhost:8000/entity-admin

http://localhost:8000/event-admin

0 comments on commit d329eb7

Please sign in to comment.