DylanBanta 546f321ff0 feat: add GET /api/v2/scenes endpoint
- load.controller.ts exposing listScenes()
- adjusted AppModule to register LoadController
- multi-stage Dockerfile now copies compiled dist/
- synced package-lock.json and installed redis types
- fixed iterator usage in storage.service
2025-05-25 21:49:34 -04:00

19 lines
299 B
Plaintext

# ignore everything by default
*
# keep package manifests so we can install deps
!package.json
!package-lock.json
# keep your Nest build config
!nest-cli.json
!tsconfig.json
!tsconfig.build.json
# keep source code
!src/**
# ignore node_modules and any pre-existing dist output
node_modules
dist