We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d378c5 commit 4fcb4e1Copy full SHA for 4fcb4e1
1 file changed
README.md
@@ -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
19
+mkvirtualenv jobs
20
+pip install -r requirements.txt
21
+python manage.py migrate
22
+python manage.py runserver
23
0 commit comments