-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Simon <[email protected]>
- Loading branch information
1 parent
fa9cbef
commit 1067589
Showing
5 changed files
with
47 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Deployer Backend | ||
|
||
This server allows to automatically deploy applications on the server. | ||
|
||
The API works in combination with the [ndb-setup](https://github.com/Aam-Digital/ndb-setup) scripts, for instructions to integrate this API deployment service, see https://github.com/Aam-Digital/ndb-setup/tree/master/deployer | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,51 @@ | ||
import { ApiProperty } from '@nestjs/swagger'; | ||
|
||
export class DeploymentInfo { | ||
@ApiProperty({ | ||
description: | ||
'Name of the system to be created. Must not contain whitespaces.', | ||
}) | ||
name: string; | ||
|
||
@ApiProperty({ | ||
description: 'Language for the system (and keycloak).', | ||
}) | ||
locale?: string; | ||
|
||
@ApiProperty({ | ||
description: 'Username of the initial user account created as site admin.', | ||
}) | ||
username: string; | ||
|
||
@ApiProperty({ | ||
description: 'Email for the initial user account.', | ||
}) | ||
email: string; | ||
|
||
@ApiProperty({ | ||
description: | ||
'Whether the permission backend (replication-backend) should be set up.', | ||
}) | ||
backend: boolean; | ||
|
||
@ApiProperty({ | ||
description: 'Whether the new system should be added to uptime monitoring.', | ||
}) | ||
monitor: boolean; | ||
|
||
@ApiProperty({ | ||
description: 'Name of the Keycloak confidential client.', | ||
}) | ||
client: string; | ||
|
||
@ApiProperty({ | ||
description: 'Credentials for the Keycloak confidential client.', | ||
}) | ||
clientKey: string; | ||
|
||
@ApiProperty({ | ||
description: | ||
'The prebuilt configuration which should be used as a basis for this app.', | ||
}) | ||
base: string; | ||
} |