aboutsummaryrefslogtreecommitdiff
path: root/backend/main.go
blob: 2147be819443c36ac7dc464f3b59dc8f690ffc2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package main

import (
	"fmt"
	"log"
	"os"

	"lphub/api"
	"lphub/database"
	_ "lphub/docs"

	"github.com/gin-gonic/gin"
	"github.com/joho/godotenv"
	nrgin "github.com/newrelic/go-agent/v3/integrations/nrgin"
	"github.com/newrelic/go-agent/v3/newrelic"
)

//	@title			Least Portals Hub
//	@version		1.0
//	@description	Backend API endpoints for Least Portals Hub.

//	@license.name	GNU Affero General Public License, Version 3
//	@license.url	https://www.gnu.org/licenses/agpl-3.0.html

// @host		lp.pektezol.dev
// @BasePath	/api/v1
func main() {
	err := godotenv.Load()
	if err != nil {
		log.Fatal("Error loading .env file")
	}
	var app *newrelic.Application
	if os.Getenv("ENV") == "PROD" {
		gin.SetMode(gin.ReleaseMode)
		app, err = newrelic.NewApplication(
			newrelic.ConfigAppName("lphub"),
			newrelic.ConfigLicense(os.Getenv("NEWRELIC_LICENSE_KEY")),
			newrelic.ConfigAppLogForwardingEnabled(true),
		)
		if err != nil {
			log.Fatal("Error instrumenting newrelic")
		}
	}
	router := gin.Default()
	if app != nil {
		router.Use(nrgin.Middleware(app))
	}
	// router.Use(cors.Default()) // ONLY FOR DEV
	database.ConnectDB()
	api.InitRoutes(router)
	router.MaxMultipartMemory = 250 << 20 // 250 mb limit for demos
	router.Run(fmt.Sprintf(":%s", os.Getenv("PORT")))
}