Compare commits

..

3 commits

4 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View file

@ -160,3 +160,4 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ #.idea/
.python-version

7
requirements.txt Normal file
View file

@ -0,0 +1,7 @@
blinker==1.9.0
click==8.1.8
Flask==3.1.0
itsdangerous==2.2.0
Jinja2==3.1.5
MarkupSafe==3.0.2
Werkzeug==3.1.3

2
run.sh Executable file
View file

@ -0,0 +1,2 @@
#!/bin/bash
flask --app src/main run

7
src/main.py Normal file
View file

@ -0,0 +1,7 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "<p>Hello, World!</p>"