feat(server): reset admin password using cli command in the server container (#928)

This commit is contained in:
Jason Rasmussen
2022-11-05 12:28:40 -04:00
committed by GitHub
parent dd8a4c0c56
commit 02bc84062e
9 changed files with 300 additions and 277 deletions

View File

@@ -6,13 +6,15 @@
"compilerOptions": {
"webpack": false,
"tsConfigPath": "apps/immich/tsconfig.app.json",
"plugins": [ {
"name": "@nestjs/swagger",
"options": {
"classValidatorShim": false,
"introspectComments": true
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"classValidatorShim": false,
"introspectComments": true
}
}
}]
]
},
"projects": {
"immich": {
@@ -33,6 +35,15 @@
"tsConfigPath": "apps/microservices/tsconfig.app.json"
}
},
"cli": {
"type": "application",
"root": "apps/cli",
"entryFile": "immich",
"sourceRoot": "apps/cli/src",
"compilerOptions": {
"tsConfigPath": "apps/cli/tsconfig.app.json"
}
},
"common": {
"type": "library",
"root": "libs/common",