File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -224,3 +224,9 @@ class work8 completed;
224
224
class validate2_4 inProgress ;
225
225
class validate2_4 completed ;
226
226
class pr7 inProgress ;
227
+ class pr7 completed ;
228
+ class work10 inProgress ;
229
+ class work10 completed ;
230
+ class validate2_5 inProgress ;
231
+ class validate2_5 completed ;
232
+ class pr8 inProgress ;
Original file line number Diff line number Diff line change 1
1
import os
2
2
from os .path import join , dirname
3
3
from dotenv import load_dotenv
4
- import click
5
- from flask_migrate import Migrate
6
- from app .models import db
7
- from server import app
8
4
from app .cli import cli
9
5
10
6
# Load environment variables
11
7
dotenv_path = join (dirname (__file__ ), '.env' )
12
8
load_dotenv (dotenv_path )
13
9
14
- # Register app and db with migration class
15
- migrate = Migrate (app , db )
16
-
17
10
# This allows the file to be run directly with 'python manage.py'
18
11
if __name__ == '__main__' :
19
12
cli ()
You can’t perform that action at this time.
0 commit comments