Skip to content
This repository was archived by the owner on Dec 28, 2018. It is now read-only.

Commit 15782b6

Browse files
committed
change port
1 parent 07777e9 commit 15782b6

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

index.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
from src import app
2-
app.run(debug=False)
2+
app.run(port=4220)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"scripts": {
2222
"test": "",
23-
"setup": "pip install -r py_deps.txt && npm install && npm run build && python ./tools/build.py",
23+
"setup": "pip install -r py_deps.txt && npm install -g gulp && npm install && npm run build && python ./tools/build.py",
2424
"build": "gulp production",
2525
"start": "python index.py",
2626
"jobs": "python ./tools/pullJobs.py",

serve/css/general/z_mobile.scss

+4
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@
4242

4343
nav{
4444
text-align: center;
45+
46+
li{
47+
margin: 10px;
48+
}
4549
}
4650

4751

src/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ def jobs():
2828

2929
#hello
3030
if __name__ == "__main__":
31-
app.run(port=4220)
31+
app.run()

0 commit comments

Comments
 (0)