Skip to content

Commit 06a62d7

Browse files
author
徐鑫
committed
修改忽略文件
1 parent f6789a9 commit 06a62d7

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/logs/
2-
logs
1+
/logs/*
2+
!logs/.gitkeep
33
app/mrmax.py
4-
db
4+
db/*
5+
!db/.gitkeep
56
/venv/

app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# 路由组
1010
app.register_blueprint(git, url_prefix='/git')
1111

12+
1213
@app.errorhandler(400)
1314
@app.errorhandler(404)
1415
def handle_error(error):
@@ -20,4 +21,4 @@ def handle_error(error):
2021
os.environ['STABILITY_HOST'] = 'grpc.stability.ai:443'
2122
app.config['JSON_AS_ASCII'] = False
2223
log.info('Starting the app...')
23-
app.run(debug=True, host="0.0.0.0", port=80,use_reloader=False)
24+
app.run(debug=True, host="0.0.0.0", port=80, use_reloader=False)

0 commit comments

Comments
 (0)