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

pull/5/head
Vladislav Moiseev 1 year ago
parent b7c7f8e066
commit 52335870fd

@ -1,5 +1,5 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
@ -11,7 +11,7 @@
"request": "launch",
"module": "flask",
"env": {
"FLASK_APP": "webApp.py",
"FLASK_APP": "src/webApp.py",
"FLASK_DEBUG": "1"
},
"args": ["run", "--no-debugger", "--no-reload"]

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