simple/fix/get correct env var name

This commit is contained in:
SowinskiBraeden committed 2022-02-15 12:23:20 -08:00
1 parent 5e7cc9675c
commit 8de78ba177
1 file changed
+1 -1
+1 -1
View File
@@ -20,6 +20,6 @@ func main() {
routes.Setup(app)
godotenv.Load(".env")
port := os.Getenv("port")
port := os.Getenv("PORT")
app.Listen(":" + port)
}