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

@@ -23,15 +23,24 @@ AyaNova expects the data path to be provided by a config.json property, environm
`AYANOVA_DATA_PATH`
The value specified should be a string containing a fully qualified file path for the platform, for example:
`c:\ProgramData\ayanova`
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_DATA_PATH": "c:\ProgramData\ayanova"
"AYANOVA_DATA_PATH": "/var/lib/ayanova"
}
```
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_DATA_PATH": "c:\\ProgramData\\ayanova"
}
```