diff --git a/.gitignore b/.gitignore index 6e195d1..858b692 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,7 @@ testScripts builds controllerBuilds # ignoring the old app that will be built into this one to make deploying faster and more easy as we do the migration -lstV2 +lstV2/frontend/.tanstack # Logs logs diff --git a/.include b/.include index 3dee8c8..4c32e76 100644 --- a/.include +++ b/.include @@ -8,7 +8,13 @@ README.md CHANGELOG.md package.json package-lock.json -lstV2 +lstV2/dist +lstV2/database +lstV2/frontend/dist +lstV2/drizzle.config.ts +lstV2/package.json +lstV2/package-lock.json +lstV2/README.md lang scripts/services.ps1 drizzle.config.ts diff --git a/controller/build_v2app.go b/controller/build_v2app.go index c5859c0..23b72c1 100644 --- a/controller/build_v2app.go +++ b/controller/build_v2app.go @@ -19,7 +19,7 @@ func runNpmV2Build(server *socketio.Server) error { if err != nil { return err } - dir := filepath.Join(cwd, "..", "..", "lstV2") + dir := filepath.Join(cwd, "..", "lstV2") cmd.Dir = dir }