Добавление веб-версии сервиса #5

Merged
al-f merged 12 commits from webapp into master 2023-07-11 13:25:17 +04:00
6 changed files with 3 additions and 3 deletions
Showing only changes of commit 52335870fd - Show all commits

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():