This commit is contained in:
2025-01-21 19:54:09 +08:00
parent c5f0f4bf46
commit b09246a7f2
+1 -1
View File
@@ -7,7 +7,7 @@ import os
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///site.db'
app.config['SECRET_KEY'] = 'supersecretkey'
UPLOAD_FOLDER = os.path.join(os.getcwd(), 'uploads')
app.config['UPLOAD_FOLDER'] = 'uploads'
db = SQLAlchemy(app)
bcrypt = Bcrypt(app)