refactor!: prefix DEV env var and deprecate CONFIG (#64)

Signed-off-by: jolheiser <john.olheiser@gmail.com>
This commit is contained in:
John Olheiser
2023-06-18 10:01:27 -05:00
committed by GitHub
parent 62711ff491
commit fc421a68b5
3 changed files with 8 additions and 6 deletions

View File

@ -24,7 +24,7 @@ import (
"time"
)
var dev = os.Getenv("DEV") == "1"
var dev = os.Getenv("OG_DEV") == "1"
var store *sessions.CookieStore
var re = regexp.MustCompile("[^a-z0-9]+")
var fm = template.FuncMap{