We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c9648b + f1d3131 commit d329eb7Copy full SHA for d329eb7
heroes_and_monsters/README.md
@@ -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