Premiere Web App

This commit is contained in:
Kepka Ludovic
2025-08-09 00:18:19 +02:00
parent 3c693a7848
commit 81937a90b6
10 changed files with 677 additions and 1 deletions

11
webapp/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
from flask import Flask
# from flask_sqlalchemy import SQLAlchemy
# import os
# file_path = os.path.abspath(os.getcwd())+"/todo.db"
webapp = Flask(__name__)
# app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///'+file_path
# db = SQLAlchemy(app)
from webapp import routes