- 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
19 lines
299 B
Plaintext
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
|