Ada
359caeab0f
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/release Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/release Pipeline was successful
ci/woodpecker/pull_request_closed/release Pipeline was successful
ci/woodpecker/pull_request_closed/build Pipeline was successful
ci/woodpecker/pull_request_closed/lint Pipeline was successful
ci/woodpecker/pr/lint Pipeline failed
37 lines
781 B
Go
37 lines
781 B
Go
package main
|
|
|
|
import (
|
|
"embed"
|
|
"log"
|
|
|
|
"git.gnous.eu/gnouseu/plakken/internal/config"
|
|
"git.gnous.eu/gnouseu/plakken/internal/database"
|
|
"git.gnous.eu/gnouseu/plakken/internal/httpserver"
|
|
)
|
|
|
|
var (
|
|
//go:embed templates
|
|
templates embed.FS
|
|
//go:embed static
|
|
static embed.FS
|
|
)
|
|
|
|
func main() {
|
|
initConfig := config.GetConfig()
|
|
dbConfig := database.InitDB(initConfig.RedisAddress, initConfig.RedisUser, initConfig.RedisPassword, initConfig.RedisDB)
|
|
db := database.ConnectDB(dbConfig)
|
|
err := database.Ping(db)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
serverConfig := httpserver.ServerConfig{
|
|
HTTPServer: httpserver.Config(initConfig.ListenAddress),
|
|
URLLength: initConfig.URLLength,
|
|
DB: db,
|
|
Static: static,
|
|
Templates: templates,
|
|
}
|
|
|
|
serverConfig.Server()
|
|
}
|