File size: 245 Bytes
71797a4
 
 
 
 
 
23654e5
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import os
from dotenv import load_dotenv

# Load environment variables (including CUDA_VISIBLE_DEVICES)
load_dotenv()

from app import create_app

app = create_app()

if __name__ == '__main__':
    app.run(debug=True, host='0.0.0.0', port=5000)