aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..c9d0e56
--- /dev/null
+++ b/main.go
@@ -0,0 +1,17 @@
+package main
+
+import (
+ "github.com/gin-gonic/gin"
+ "github.com/gin-gonic/contrib/static"
+ "os"
+)
+
+func main() {
+ r := gin.New()
+ r.Use(gin.Logger())
+
+ r.Use(static.Serve("/",
+ static.LocalFile("./build", true)))
+
+ r.Run(":" + os.Getenv("PORT"))
+}