File size: 329 Bytes
b9604a1
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import sys
from os.path import dirname, abspath

# Add the directory of the 'treat' folder to the system path
sys.path.append(abspath(dirname(__file__)) + "/treat")

# Import the Flask app from the app module
from app import app

if __name__ == '__main__':
    # Run the Flask app with debug mode enabled
    app.run(debug=True)