From 0429bbb19db777bf5979df02ab21815b33541e7e Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Sun, 15 Apr 2018 20:27:10 -0700 Subject: Simplify Heroku deployment --- config/config.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'config') diff --git a/config/config.go b/config/config.go index 5bb9cb4..aae1d98 100644 --- a/config/config.go +++ b/config/config.go @@ -110,6 +110,10 @@ func (c *Config) DatabaseMaxConnections() int { // ListenAddr returns the listen address for the HTTP server. func (c *Config) ListenAddr() string { + if port := os.Getenv("PORT"); port != "" { + return ":" + port + } + return c.get("LISTEN_ADDR", defaultListenAddr) } @@ -183,6 +187,16 @@ func (c *Config) HasHSTS() bool { return c.get("DISABLE_HSTS", "") == "" } +// RunMigrations returns true if the environment variable RUN_MIGRATIONS is not empty. +func (c *Config) RunMigrations() bool { + return c.get("RUN_MIGRATIONS", "") != "" +} + +// CreateAdmin returns true if the environment variable CREATE_ADMIN is not empty. +func (c *Config) CreateAdmin() bool { + return c.get("CREATE_ADMIN", "") != "" +} + // NewConfig returns a new Config. func NewConfig() *Config { return &Config{IsHTTPS: os.Getenv("HTTPS") != ""} -- cgit v1.2.3