feat: Add JWT and Redis configuration to deployment and environment setup
All checks were successful
CI - Build and Push / Build and Push Docker Image (push) Successful in 50s

This commit is contained in:
2025-10-25 09:10:19 +08:00
parent 15d4088904
commit e09fac365e
5 changed files with 87 additions and 10 deletions

View File

@@ -18,7 +18,7 @@ func main() {
flag.Parse()
var c config.Config
conf.MustLoad(*configFile, &c)
conf.MustLoad(*configFile, &c, conf.UseEnv())
server := rest.MustNewServer(c.RestConf)
defer server.Stop()