chore(api/settings): move FORCE from local to common

This commit is contained in:
jon r 2025-02-25 22:37:45 +01:00
parent 2153a99246
commit 96f6265f45
2 changed files with 2 additions and 3 deletions

View File

@ -38,6 +38,8 @@ Available levels:
IS_DOCKER_SETUP = env.bool("IS_DOCKER_SETUP", False)
# allows makemigrations and superuser creation
FORCE = env.bool("FORCE", False)
if env("FUNKWHALE_SENTRY_DSN", default=None) is not None:
import sentry_sdk

View File

@ -152,6 +152,3 @@ REST_FRAMEWORK.update(
],
}
)
# allows makemigrations and superuser creation
FORCE = env("FORCE", default=0)