File size: 250 Bytes
411a994
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import os
import sys

# Ensure project root is on sys.path so 'app' and 'main' can be imported
PROJECT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir))
if PROJECT_ROOT not in sys.path:
    sys.path.insert(0, PROJECT_ROOT)