diff options
author | crupest <crupest@outlook.com> | 2021-01-23 01:16:24 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-01-23 01:17:02 +0800 |
commit | 0691b654e114274b73e5a0aa1c1b0842445e57ef (patch) | |
tree | a8f7688dec938e041f151a2db844fc6a50cf9087 /BackEnd/Timeline/Properties | |
parent | fca1b6bf2ef01990915a892c2ad4dc27aca4f211 (diff) | |
download | timeline-0691b654e114274b73e5a0aa1c1b0842445e57ef.tar.gz timeline-0691b654e114274b73e5a0aa1c1b0842445e57ef.tar.bz2 timeline-0691b654e114274b73e5a0aa1c1b0842445e57ef.zip |
feat: Now configuration uses environment variables starts with 'Timeline_'. And remove work dir config in launch profiles.
Diffstat (limited to 'BackEnd/Timeline/Properties')
-rw-r--r-- | BackEnd/Timeline/Properties/launchSettings.json | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/BackEnd/Timeline/Properties/launchSettings.json b/BackEnd/Timeline/Properties/launchSettings.json index a31485ed..db58cd31 100644 --- a/BackEnd/Timeline/Properties/launchSettings.json +++ b/BackEnd/Timeline/Properties/launchSettings.json @@ -5,23 +5,20 @@ "applicationUrl": "http://0.0.0.0:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
- "ASPNETCORE_FRONTEND": "Proxy",
- "ASPNETCORE_WORKDIR": "D:\\timeline-development"
+ "ASPNETCORE_FRONTEND": "Proxy"
}
},
"Dev-Mock": {
"commandName": "Project",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
- "ASPNETCORE_FRONTEND": "Mock",
- "ASPNETCORE_WORKDIR": "D:\\timeline-development"
+ "ASPNETCORE_FRONTEND": "Mock"
}
},
"Staging": {
"commandName": "Project",
"environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Staging",
- "ASPNETCORE_WORKDIR": "D:\\timeline-development"
+ "ASPNETCORE_ENVIRONMENT": "Staging"
}
}
}
|