aqua/cmd/aqua/main.go

37 lines
822 B
Go

package main
import (
"github.com/gin-gonic/gin"
"github.com/joho/godotenv"
"github.com/superioz/aqua/internal/handler"
"github.com/superioz/aqua/internal/middleware"
"k8s.io/klog"
"time"
)
// TODO Add cleanup process, to delete all images that are not in the sqlite or that are expired
func main() {
err := godotenv.Load()
if err != nil {
klog.Warningln("Error loading .env file: %v", err)
}
klog.Infoln("Hello World!")
r := gin.New()
r.Use(middleware.Logger(3 * time.Second))
// restrict to max 100mb
r.Use(middleware.RestrictBodySize(100 * handler.SizeMegaByte))
r.Use(gin.Recovery())
// handler for receiving uploaded files
uh := handler.NewUploadHandler()
r.POST("/upload", uh.Upload)
r.GET("/healthz", func(c *gin.Context) {
c.JSON(200, gin.H{"status": "UP"})
})
_ = r.Run(":8765")
}