project init

This commit is contained in:
zhl 2021-06-16 10:31:35 +08:00
commit 0a70c4bf02
3 changed files with 13 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
venv
.idea

10
main.py Normal file
View File

@ -0,0 +1,10 @@
import flask
app = flask.Flask(__name__)
if __name__ == '__main__':
app.run(
host='0.0.0.0',
port=8081,
debug=True
)

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
flask