You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
from flask import Flask
|
|
from flask_sqlalchemy import SQLAlchemy # type: ignore
|
|
|
|
app = Flask(__name__)
|
|
app.config['SECRET_KEY'] = 'db3746b2ffa650b3804e4316d227f853'
|
|
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///blogsite.db'
|
|
db = SQLAlchemy(app)
|
|
|
|
from blogapp import routes |