diff --git a/.gitignore b/.gitignore index 5bfcd1f..cb82367 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .env dist +.DS_Store diff --git a/main.go b/main.go index 1432565..f124a17 100644 --- a/main.go +++ b/main.go @@ -47,8 +47,10 @@ func executeSql(c *gin.Context) { } func main() { - router := gin.Default() +// router := gin.Default() + router := gin.New() router.POST("/", executeSql) - router.Run("localhost:8080") +// router.Run("localhost:8080") + router.Run("0.0.0.0:8080") }