SQL Database Project - Deploy db to docker (#16406)

Added a new command to deploy the project to docker
This commit is contained in:
Leila Lali
2021-08-12 13:24:16 -07:00
committed by GitHub
parent 57e11c7b5c
commit 32a71a2de6
18 changed files with 1111 additions and 92 deletions

View File

@@ -0,0 +1,21 @@
import { IDeploySettings } from '../IDeploySettings';
export enum AppSettingType {
None,
AzureFunction
}
export interface IDeployProfile {
localDbSetting?: ILocalDbSetting;
deploySettings?: IDeploySettings;
envVariableName?: string;
appSettingFile?: string;
appSettingType: AppSettingType;
}
export interface ILocalDbSetting {
serverName: string,
port: number,
userName: string,
password: string,
dbName: string,
}