Compare commits
No commits in common. '05b33baf9f9b2ee5f93e70b8a6d2d668d1a954bf' and '78f2a113ddb5c9ac9d30309e4cc1b07173cb5cec' have entirely different histories.
05b33baf9f
...
78f2a113dd
Binary file not shown.
@ -1,15 +1,10 @@
|
||||
|
||||
|
||||
from flask import Flask
|
||||
from flask_sqlalchemy import SQLAlchemy # type: ignore
|
||||
from flask_bcrypt import Bcrypt # type: ignore
|
||||
|
||||
|
||||
|
||||
app = Flask(__name__)
|
||||
app.config['SECRET_KEY'] = 'db3746b2ffa650b3804e4316d227f853'
|
||||
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///blogsite.db'
|
||||
db = SQLAlchemy(app)
|
||||
bcrypt = Bcrypt(app)
|
||||
|
||||
from blogapp import routes
|
||||
from blogapp import routes
|
@ -1,3 +0,0 @@
|
||||
.invalid {
|
||||
color:red;
|
||||
}
|
Binary file not shown.
Loading…
Reference in new issue