diff --git a/client/src/main.ts b/client/src/main.ts index bb082423..50a87bb8 100644 --- a/client/src/main.ts +++ b/client/src/main.ts @@ -21,6 +21,7 @@ if (appEnv.startsWith("prod")) { } else { log.setLevel("trace"); } +log.warn(`application started appEnv=${appEnv}`); const i18n = setupI18n(); const app = createApp(App); diff --git a/server/config/settings/base.py b/server/config/settings/base.py index 8330a516..61c931e6 100644 --- a/server/config/settings/base.py +++ b/server/config/settings/base.py @@ -140,9 +140,7 @@ AUTH_USER_MODEL = "core.User" # https://docs.djangoproject.com/en/dev/ref/settings/#login-redirect-url # https://docs.djangoproject.com/en/dev/ref/settings/#login-url -# FIXME make configurable!? -# LOGIN_URL = "/sso/login/" -LOGIN_URL = "/login" +LOGIN_URL = "/login-local" LOGIN_REDIRECT_URL = "/" ALLOW_LOCAL_LOGIN = env.bool("IT_ALLOW_LOCAL_LOGIN", default=DEBUG)