Compare commits

...

3 Commits

Author SHA1 Message Date
alexroidl b9dabb49ea app.py merge 5 years ago
alexroidl 4d12ce3cb8 ignore 5 years ago
alexroidl 9a631caaf3 app port 5 years ago

1
.gitignore vendored

@ -2,3 +2,4 @@
*.pyc
blogger/_pycache_
app/img/*
venv

@ -1,4 +1,4 @@
from app import app
if __name__ == '__main__':
app.run(host='0.0.0.0',port=1234,debug=True)
app.run(host='0.0.0.0',port=5000,debug=False)

@ -15,3 +15,7 @@ app.config['CORS_HEADERS'] = 'Content-Type'
app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
from app import models
from app import views
if __name__ == '__main__':
app.run(host='0.0.0.0',port=5000,debug=False)

Before

Width:  |  Height:  |  Size: 375 KiB

After

Width:  |  Height:  |  Size: 375 KiB

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.
Loading…
Cancel
Save