Перемещение исходников в директорию src

This commit is contained in:
Vladislav Moiseev 2023-07-07 22:14:30 +04:00
parent b7c7f8e066
commit 52335870fd
6 changed files with 3 additions and 3 deletions

2
.vscode/launch.json vendored
View File

@ -11,7 +11,7 @@
"request": "launch", "request": "launch",
"module": "flask", "module": "flask",
"env": { "env": {
"FLASK_APP": "webApp.py", "FLASK_APP": "src/webApp.py",
"FLASK_DEBUG": "1" "FLASK_DEBUG": "1"
}, },
"args": ["run", "--no-debugger", "--no-reload"] "args": ["run", "--no-debugger", "--no-reload"]

View File

@ -5,7 +5,7 @@ import numpy
from imageWorking import get_image_buf_as_array from imageWorking import get_image_buf_as_array
from main import analyze_base from main import analyze_base
app = Flask(__name__, static_url_path = "/") app = Flask(__name__, static_folder = "../static", static_url_path = "/")
@app.route("/") @app.route("/")
def main(): def main():