Skip to content

Commit 4fcb4e1

Browse files
committed
Add README
1 parent 3d378c5 commit 4fcb4e1

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# PythonPH Jobs
2+
3+
## Setup
4+
5+
### PostgreSQL
6+
7+
```bash
8+
export POSTGRES_USER=jobs
9+
export POSTGRES_PASSWORD=password
10+
createuser -P jobs
11+
# You will be prompted to enter a password
12+
# Enter what you set in POSTGRES_PASSWORD
13+
createdb -O jobs jobs
14+
```
15+
16+
### Django
17+
18+
```bash
19+
mkvirtualenv jobs
20+
pip install -r requirements.txt
21+
python manage.py migrate
22+
python manage.py runserver
23+
```

0 commit comments

Comments
 (0)