DummyApp/app/__init__.py
Norvicdev e6e700c2ee
Some checks failed
Build and Deploy Flask App / test (pull_request) Has been cancelled
Build and Deploy Flask App / build-and-push (pull_request) Has been cancelled
Build and Deploy Flask App / deploy (pull_request) Has been cancelled
entire app update:
moder view app with static page, forgejo ci/cd workflow
2026-08-04 17:29:48 +03:00

12 lines
No EOL
205 B
Python

from flask import Flask
import os
def create_app():
app = Flask(__name__)
app.config.from_object('config.Config')
from app.routes import main
app.register_blueprint(main)
return app