Skip to content

Instantly share code, notes, and snippets.

@victorsteven
Created January 19, 2020 21:32
Show Gist options
  • Save victorsteven/5295104e662acd902ebeb43b82aaf43c to your computer and use it in GitHub Desktop.
Save victorsteven/5295104e662acd902ebeb43b82aaf43c to your computer and use it in GitHub Desktop.
package app
import (
"github.com/gin-gonic/gin"
"os"
)
var (
router = gin.Default()
)
func StartApp() {
route()
port := os.Getenv("PORT") //using heroku host
if port == "" {
port = "8888" //localhost
}
router.Run(":"+port)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment