Skip to content

Commit f1d3131

Browse files
committed
Added README to run the project locally
1 parent 1c9648b commit f1d3131

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

heroes_and_monsters/README.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## Running the project locally
2+
3+
You should follow these steps to run the project locally.
4+
5+
### Create a virtual environment
6+
7+
You should create a virtual environment, preferably with Python 3.6
8+
9+
If you use **virtualenvwrapper**, you could do:
10+
11+
mkvirtualenv --python=/usr/local/bin/python3 django-admin-cookbook
12+
13+
### Install the requirements
14+
15+
pip install -r requirements.txt
16+
17+
### Run migrations
18+
19+
python manage.py migrate
20+
21+
### Run server and access admin
22+
23+
python manage.py runserver
24+
25+
You can access admins at:
26+
27+
http://localhost:8000/entity-admin
28+
29+
http://localhost:8000/event-admin

0 commit comments

Comments
 (0)