Merge branch 'main' of github.com:sartography/spiff-arena
This commit is contained in:
commit
1921d0d174
|
@ -1,6 +1,7 @@
|
||||||
"""__init__."""
|
"""__init__."""
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
import faulthandler
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
import connexion # type: ignore
|
import connexion # type: ignore
|
||||||
|
@ -80,6 +81,8 @@ def start_scheduler(
|
||||||
|
|
||||||
def create_app() -> flask.app.Flask:
|
def create_app() -> flask.app.Flask:
|
||||||
"""Create_app."""
|
"""Create_app."""
|
||||||
|
faulthandler.enable()
|
||||||
|
|
||||||
# We need to create the sqlite database in a known location.
|
# We need to create the sqlite database in a known location.
|
||||||
# If we rely on the app.instance_path without setting an environment
|
# If we rely on the app.instance_path without setting an environment
|
||||||
# variable, it will be one thing when we run flask db upgrade in the
|
# variable, it will be one thing when we run flask db upgrade in the
|
||||||
|
|
Loading…
Reference in New Issue