Compare commits

...

2 Commits

View File

@ -33,6 +33,8 @@ type AppMetadata struct {
} }
func init() { func init() {
// set production mode on gin, if you are facing issues then remove this line and see what is going on in debug mode
gin.SetMode(gin.ReleaseMode)
// Load .env file // Load .env file
if err := godotenv.Load(); err != nil { if err := godotenv.Load(); err != nil {
// Create .env if it doesn't exist // Create .env if it doesn't exist
@ -42,6 +44,11 @@ func init() {
ioutil.WriteFile(".env", []byte(envContent), 0644) ioutil.WriteFile(".env", []byte(envContent), 0644)
godotenv.Load() godotenv.Load()
} }
websrvport := os.Getenv("PORT")
if websrvport == "" {
websrvport = "8080"
}
fmt.Printf("Starting web server on port %s\n", websrvport)
} }
func authMiddleware() gin.HandlerFunc { func authMiddleware() gin.HandlerFunc {