Add port environment variable
This commit is contained in:
parent
cd326bcfac
commit
77768ff431
2 changed files with 8 additions and 1 deletions
|
|
@ -28,6 +28,7 @@ type config struct {
|
||||||
vkToken string
|
vkToken string
|
||||||
vkConfirmationString string
|
vkConfirmationString string
|
||||||
ydbConnectionString string
|
ydbConnectionString string
|
||||||
|
port string
|
||||||
}
|
}
|
||||||
|
|
||||||
func getConfig() *config {
|
func getConfig() *config {
|
||||||
|
|
@ -69,6 +70,11 @@ func getConfig() *config {
|
||||||
panic("YDB_CONNECTION_STRING environment variable not defined")
|
panic("YDB_CONNECTION_STRING environment variable not defined")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cfg.port, exists = os.LookupEnv("PORT")
|
||||||
|
if !exists {
|
||||||
|
panic("PORT environment variable not defined")
|
||||||
|
}
|
||||||
|
|
||||||
return &cfg
|
return &cfg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -132,5 +138,5 @@ func main() {
|
||||||
|
|
||||||
r.POST("vk", handler.HandleMessage)
|
r.POST("vk", handler.HandleMessage)
|
||||||
r.POST("tg", tgHandler.HandleMessage)
|
r.POST("tg", tgHandler.HandleMessage)
|
||||||
_ = r.Run(":8000")
|
_ = r.Run(":" + cfg.port)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ services:
|
||||||
- VK_GROUP_ID
|
- VK_GROUP_ID
|
||||||
- VK_CONFIRMATION_STRING
|
- VK_CONFIRMATION_STRING
|
||||||
- TG_TOKEN
|
- TG_TOKEN
|
||||||
|
- PORT=8000
|
||||||
|
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:8888:8000"
|
- "127.0.0.1:8888:8000"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue