Skip to content

Commit dba0a20

Browse files
committed
Details about disabling remote download
1 parent 2ee8196 commit dba0a20

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
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:

0 commit comments

Comments
 (0)