disable dev routes and add .vscode to gitignore

This commit is contained in:
2025-10-23 17:10:31 +07:00
parent 8094de70cc
commit ce4ff29591
3 changed files with 4 additions and 4 deletions

1
.gitignore vendored
View File

@@ -4,3 +4,4 @@ config.yaml
restapi.rest
cpone.db
coba.Http
.vscode/

View File

@@ -1,3 +0,0 @@
{
"liveServer.settings.port": 5501
}

View File

@@ -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"))
}