Skip to content

Commit d09a9c9

Browse files
committed
Add docs about disabling remote download
1 parent 2b45dec commit d09a9c9

File tree

2 files changed

+25
-40
lines changed

2 files changed

+25
-40
lines changed

README.md

+25
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,31 @@ It also includes other detailed type information, for example `Length`, so you c
104104

105105
---
106106

107+
## Disable Downloading Latest Defaults
108+
109+
Sometimes, it's just useful to disable downloading of the latest defaults, and just edit the scripts that are included
110+
to see how they work. To do that, create a file in your `Documents/vmsacars` directory, called `appsettings.local.json`,
111+
and place the following:
112+
113+
```json filename="appsettings.local.json"
114+
{
115+
"Config": {
116+
"App": {
117+
"DownloadConfig": false
118+
}
119+
},
120+
"Serilog": {
121+
"MinimumLevel": {
122+
"Default": "Verbose"
123+
}
124+
}
125+
}
126+
```
127+
128+
You can also adjust the log level to "Information", "Debug" or "Verbose" ("Debug" is recommended)
129+
130+
---
131+
107132
## Aircraft Configuration:
108133

109134
Aircraft rules are required to inherit the `AircraftConfig` abstract class. An example class would look like:

package.g.props

-40
This file was deleted.

0 commit comments

Comments
 (0)