You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
532 B
27 lines
532 B
package main
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
"./app"
|
|
"os"
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
|
|
router := mux.NewRouter()
|
|
router.Use(app.JwtAuthentication) //attach JWT auth middleware
|
|
|
|
port := os.Getenv("PORT") //Get port from .env file, we did not specify any port so this should return an empty string when tested locally
|
|
if port == "" {
|
|
port = "8000" //localhost
|
|
}
|
|
|
|
fmt.Println(port)
|
|
|
|
err := http.ListenAndServe(":" + port, router) //Launch the app, visit localhost:8000/api
|
|
if err != nil {
|
|
fmt.Print(err)
|
|
}
|
|
}
|
|
|