Setting up a web application

This commit is contained in:
vinchent 2024-08-03 12:17:39 +02:00
parent 364d3a5557
commit a7c561dd65
4 changed files with 108 additions and 0 deletions

92
cmd/web/main.go Normal file
View File

@ -0,0 +1,92 @@
package main
import (
"flag"
"fmt"
"html/template"
"log"
"net/http"
"os"
"time"
)
const (
version = "1.0.0"
cssVersion = "1"
)
type config struct {
port int
env string
api string
db struct {
dsn string
}
stripe struct {
secret string
key string
}
}
type application struct {
config config
infolog *log.Logger
errorLog *log.Logger
templateCache map[string]*template.Template
version string
}
func (app *application) serve() error {
srv := &http.Server{
Addr: fmt.Sprintf(":%d", app.config.port),
Handler: app.routes(),
IdleTimeout: 30 * time.Second,
ReadTimeout: 10 * time.Second,
ReadHeaderTimeout: 5 * time.Second,
WriteTimeout: 5 * time.Second,
}
app.infolog.Printf(
"Starting HTTP server in %s mode on port %d",
app.config.env,
app.config.port,
)
return srv.ListenAndServe()
}
func main() {
var cfg config
flag.IntVar(&cfg.port, "port", 4000, "Server port to listen on")
flag.StringVar(
&cfg.env,
"env",
"development",
"Application environment {development|production}",
)
flag.StringVar(&cfg.api, "api", "http://localhost:4001", "URL to api")
flag.Parse()
cfg.stripe.key = os.Getenv("STRIPE_KEY")
cfg.stripe.secret = os.Getenv("STRIPE_SECRET")
infoLog := log.New(os.Stdout, "INFO\t", log.Ldate|log.Ltime)
errorLog := log.New(os.Stdout, "ERROR\t", log.Ldate|log.Ltime|log.Lshortfile)
tc := make(map[string]*template.Template)
app := &application{
config: cfg,
infolog: infoLog,
errorLog: errorLog,
templateCache: tc,
version: version,
}
err := app.serve()
if err != nil {
app.errorLog.Println(err)
log.Fatal(err)
}
}

12
cmd/web/routes.go Normal file
View File

@ -0,0 +1,12 @@
package main
import (
"net/http"
"github.com/go-chi/chi/v5"
)
func (app *application) routes() http.Handler {
mux := chi.NewRouter()
return mux
}

2
go.mod
View File

@ -1,3 +1,5 @@
module myapp module myapp
go 1.21.0 go 1.21.0
require github.com/go-chi/chi/v5 v5.1.0

2
go.sum Normal file
View File

@ -0,0 +1,2 @@
github.com/go-chi/chi/v5 v5.1.0 h1:acVI1TYaD+hhedDJ3r54HyA6sExp3HfXq7QWEEY/xMw=
github.com/go-chi/chi/v5 v5.1.0/go.mod h1:DslCQbL2OYiznFReuXYUmQ2hGd1aDpCnlMNITLSKoi8=