b014e64c5d
Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
233 B
Python
11 lines
233 B
Python
import sys
|
|
|
|
try:
|
|
from app import create_app
|
|
|
|
create_app(setup_database=True)
|
|
print("Database init OK", flush=True)
|
|
except Exception as exc:
|
|
print(f"Database init FAILED: {exc}", file=sys.stderr, flush=True)
|
|
raise
|