Skip to content

Commit 0319663

Browse files
authored
Add Readme (#18)
* Add gitignore * Add readme
1 parent f50b4e6 commit 0319663

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.pyc
2+
/env/
3+
/hamwan
4+
/mysite.log

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Installation
2+
3+
## Create a Virutalenv
4+
5+
virtualenv env
6+
source env/bin/activate
7+
8+
## Install Dependencies
9+
10+
pip install -r requirements.txt
11+
12+
# Test
13+
14+
python manage.py test
15+
16+
# Run
17+
18+
python manage.py syncdb
19+
python manage.py migrate
20+
python manage.py runserver
21+
22+
Open in browser: http://127.0.0.1:8000/admin/

0 commit comments

Comments
 (0)