This commit is contained in:
2022-02-15 20:56:16 +00:00
parent 381520f865
commit 7b5c87fd28
10 changed files with 87 additions and 20 deletions

View File

@@ -14,15 +14,24 @@ AyaNova expects the temporary files folder path to be provided by a config.json
`AYANOVA_TEMP_FILES_PATH`
The value specified should be a string containing a fully qualified file path for the platform, for example:
`c:\ProgramData\ayanova\tempfiles`
The value specified should be a string containing a fully qualified file path for the platform.
Example config.json entry
Example LINUX config.json entry
```json
{
...other properties...
"AYANOVA_TEMP_FILES_PATH": "c:\ProgramData\ayanova\tempfiles"
"AYANOVA_TEMP_FILES_PATH": "/var/lib/ayanova/tempfiles"
}
```
Example WINDOWS config.json entry
(Back slashes need to be **doubled** in config.json file or the server will fail to start)
```json
{
...other properties...
"AYANOVA_TEMP_FILES_PATH": "c:\\ProgramData\\ayanova\\tempfiles"
}
```