geo-smart-system/main.go
2020-11-24 12:12:27 +07:00

29 lines
708 B
Go

package main
import (
"fmt"
"github.com/gin-contrib/cors"
"github.com/gin-gonic/gin"
"github.com/go-redis/redis"
"github.com/supanadit/geo-smart-system/system"
"log"
"net/http"
)
func main() {
// Create Connection with Tile 38
client := redis.NewClient(&redis.Options{
Addr: system.GetTile38ConnectionAddress(),
})
// Create Gin Engine
r := gin.Default()
r.Use(cors.Default())
// Call Router
system.Router(r, client)
// Run Server
// _ = r.Run(fmt.Sprintf(":%s", system.ServerPort))
// _ = r.RunTLS(fmt.Sprintf(":%s", system.ServerPort), "./server.crt", "./server.key")
err := http.ListenAndServeTLS(fmt.Sprintf(":%s", system.ServerPort), "cert.pem", "key.pem", nil)
log.Fatal(err)
}