FreePad/main.go

27 lines
383 B
Go
Raw Normal View History

2022-05-18 22:54:07 +03:00
package main
import (
"os"
"github.com/gin-gonic/gin"
)
func main() {
_, isDevelopment := os.LookupEnv("DEV_MODE")
if isDevelopment {
gin.SetMode(gin.ReleaseMode)
}
// Initialize the router
router := gin.Default()
2022-05-19 00:31:13 +03:00
// Read HTML Templates
router.LoadHTMLGlob("templates/**/*.html")
// Load in static path
router.Static("/static", "static/")
2022-05-18 22:54:07 +03:00
router.Run(":8080")
}