File size: 213 Bytes
e221c83
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# run.py

from dotenv import load_dotenv

# create_app() 보다 먼저 실행되어야 합니다.
load_dotenv() 

from src import create_app

app = create_app()

if __name__ == '__main__':
    app.run(debug=True)