13 lines
220 B
Python
13 lines
220 B
Python
|
|
import sys
|
||
|
|
import os
|
||
|
|
|
||
|
|
# Ensure the project root is in sys.path
|
||
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
||
|
|
|
||
|
|
from web.app import create_app
|
||
|
|
|
||
|
|
app = create_app()
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
app.run()
|