mirror of
https://github.com/skylanix/MamieHenriette.git
synced 2026-02-06 23:10:36 +01:00
11 lines
273 B
Python
11 lines
273 B
Python
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 |