diff --git a/.gitignore b/.gitignore index 4e2b9dc..63c9664 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ config.yaml restapi.rest cpone.db coba.Http +.vscode/ \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 6f3a291..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "liveServer.settings.port": 5501 -} \ No newline at end of file diff --git a/cmd/main.go b/cmd/main.go index 4ecd273..6ce0659 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -60,8 +60,10 @@ func main() { handlers.SetupRoutesCorporate(app, appStore) // SETUP ROUT CLIENT handlers.SetupRoutesClient(app, appStore) + // SETUP ROUT DEV - handlers.SetupRoutesDev(app, appStore) + // handlers.SetupRoutesDev(app, appStore) + app.Logger.Fatal(app.Start(":5000")) }