chore(api/settings): move FORCE from local to common
This commit is contained in:
parent
2153a99246
commit
96f6265f45
|
@ -38,6 +38,8 @@ Available levels:
|
||||||
|
|
||||||
IS_DOCKER_SETUP = env.bool("IS_DOCKER_SETUP", False)
|
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:
|
if env("FUNKWHALE_SENTRY_DSN", default=None) is not None:
|
||||||
import sentry_sdk
|
import sentry_sdk
|
||||||
|
|
|
@ -152,6 +152,3 @@ REST_FRAMEWORK.update(
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
# allows makemigrations and superuser creation
|
|
||||||
FORCE = env("FORCE", default=0)
|
|
||||||
|
|
Loading…
Reference in New Issue