Browse Source

Vorlage für Webservice von status-server

Global Cube 2 years ago
parent
commit
d2079a5b6f
5 changed files with 44 additions and 0 deletions
  1. 16 0
      .vscode/launch.json
  2. 10 0
      docker-compose.yml
  3. 6 0
      main.py
  4. 5 0
      requirements.txt
  5. 7 0
      uwsgi.ini

+ 16 - 0
.vscode/launch.json

@@ -0,0 +1,16 @@
+{
+    // 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
+    "version": "0.2.0",
+    "configurations": [
+        {
+            "name": "Python: Current File",
+            "type": "python",
+            "request": "launch",
+            "program": "${file}",
+            "console": "integratedTerminal",
+            "justMyCode": true
+        }
+    ]
+}

+ 10 - 0
docker-compose.yml

@@ -0,0 +1,10 @@
+version: "3"
+services:
+  flask-default:
+    image: tiangolo/uwsgi-nginx-flask:python3.10
+    container_name: flask-default
+    privileged: true
+    ports:
+      - "8088:80"
+    volumes:
+      - ./:/app

+ 6 - 0
main.py

@@ -0,0 +1,6 @@
+from flask import Flask
+from app import views, api
+
+app = Flask(__name__, template_folder='app/templates')
+app.register_blueprint(views.bp)
+app.register_blueprint(api.bp, url_prefix='/api')

+ 5 - 0
requirements.txt

@@ -0,0 +1,5 @@
+Flask>=2.2.0
+beautifulsoup4
+pandas
+sqlalchemy
+zipfile

+ 7 - 0
uwsgi.ini

@@ -0,0 +1,7 @@
+[uwsgi]
+module = main
+callable = app
+master = true
+touch-reload = /app/uwsgi.ini
+# debug = true
+