From 1f03f790f0425151003c38128b310540a71b98d6 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 3 Dec 2020 16:36:06 +0000 Subject: add accepting_registration variable to environment --- .env.example | 2 ++ 1 file changed, 2 insertions(+) (limited to '.env.example') diff --git a/.env.example b/.env.example index f6c5ee0..ec0f6c4 100644 --- a/.env.example +++ b/.env.example @@ -11,6 +11,8 @@ SECRET_KEY=my-long-and-hard-to-guess-secret-key USER_EMAIL_DOMAINS= # specific user emails allowed (semicolon separated) USER_EMAILS= +# whether you're accepting new user registrations +ACCEPTING_REGISTRATION=1 ## Mail configuration # -- cgit v1.2.3 From 1b48dda49731b1819e4de544bb224434653570e4 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 3 Dec 2020 17:50:12 +0000 Subject: add the flask_app variable to the env --- .env.example | 1 + 1 file changed, 1 insertion(+) (limited to '.env.example') diff --git a/.env.example b/.env.example index ec0f6c4..1364a9d 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,5 @@ ## Flask config +FLASK_APP=annotate_change.py # production|development FLASK_ENV=development -- cgit v1.2.3