소스 검색

Merge pull request #1 from tizot/master

Update README
Denis Merigoux 9 년 전
부모
커밋
f86dabd767
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. 7 1
      README.md

+ 7 - 1
README.md

@@ -6,11 +6,17 @@ Clone the repo, then create a `virtualenv` with Python 3, then install the requi
6 6
 
7 7
     pip install -r requirements.txt
8 8
 
9
+Then copy and paste the settings file template located in folder `seum`:
10
+```
11
+cd seum && cp settings.py.default settings.py
12
+```
13
+
9 14
 ## Running the server
10 15
 
11 16
 ### Developement
12 17
 
13
-Simply use the django command :
18
+First, comment out the lines below "#Production settings".  
19
+Then simply use the django command:
14 20
 
15 21
     python manage.py runserver 0.0.0.0:8000
16 22