Compare commits
2 Commits
28063e3f46
...
e1e93a9336
Author | SHA1 | Date | |
---|---|---|---|
e1e93a9336 | |||
31425ab514 |
7
main.go
7
main.go
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user