-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
74 lines (60 loc) · 1.72 KB
/
main.go
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package main
import (
"database/sql"
"log"
"net/http"
"os"
"github.com/adityapandey23/rss-aggregator/internal/database"
"github.com/go-chi/chi"
"github.com/go-chi/cors"
"github.com/joho/godotenv"
_ "github.com/lib/pq"
)
type apiConfig struct {
DB *database.Queries
}
func main() {
godotenv.Load(".env")
// For PORT
portString := os.Getenv("PORT")
if portString == "" {
log.Fatal("Port is not found in the environment") // Exits the program
}
// For Database connection
dbURL := os.Getenv("DB_URL")
if dbURL == "" {
log.Fatal("DB_URL is not found in the environment") // Exits the program
}
conn, conn_err := sql.Open("postgres", dbURL)
if conn_err != nil {
log.Fatal("Can't connect to database")
}
apiCfg := apiConfig{
DB: database.New(conn),
}
router := chi.NewRouter() // Creating a router
router.Use(cors.Handler(cors.Options{ // Technically wouldn't be so permissive
AllowedOrigins: []string{"https://*", "http://*"},
AllowedMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
AllowedHeaders: []string{"*"},
ExposedHeaders: []string{"Link"},
AllowCredentials: false,
MaxAge: 300,
}))
// New routers
v1Router := chi.NewRouter()
v1Router.Get("/healthz", handlerReadiness) // Used the Get function to scope the request to only get requests
v1Router.Get("/err", handlerErr)
v1Router.Post("/users", apiCfg.handlerCreateUser)
// Mounting the routes
router.Mount("/v1", v1Router)
srv := &http.Server{ // Making a server
Handler: router,
Addr: ":" + portString,
}
log.Printf("Server starting on port:%v", portString)
err := srv.ListenAndServe() // Making the server listen and serve to the incoming requests
if err != nil {
log.Fatal("Error", err)
}
}