case 4586
This commit is contained in:
5
dist/assets/lan-install-config.json
vendored
5
dist/assets/lan-install-config.json
vendored
@@ -3,8 +3,9 @@
|
|||||||
"AYANOVA_DB_CONNECTION":"Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;CommandTimeout=300;",
|
"AYANOVA_DB_CONNECTION":"Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;CommandTimeout=300;",
|
||||||
"AYANOVA_DEFAULT_TRANSLATION":"en",
|
"AYANOVA_DEFAULT_TRANSLATION":"en",
|
||||||
"AYANOVA_DATA_PATH":"%ProgramData%\\ayanova",
|
"AYANOVA_DATA_PATH":"%ProgramData%\\ayanova",
|
||||||
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin",
|
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\16\\bin",
|
||||||
"AYANOVA_LOG_LEVEL": "Info"
|
"AYANOVA_LOG_LEVEL": "Info",
|
||||||
|
"AYANOVA_JWT_SECRET": "11111YourRandom32CharacterSecret"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
7
dist/install/windows/x64/lan.iss
vendored
7
dist/install/windows/x64/lan.iss
vendored
@@ -43,13 +43,16 @@ Source: "C:\data\code\raven\dist\assets\open-ayanova-app.bat"; DestDir: "{app}";
|
|||||||
|
|
||||||
|
|
||||||
[Dirs]
|
[Dirs]
|
||||||
Name: "{app}\.local-chromium";Permissions: users-modify;Flags: uninsalwaysuninstall
|
Name: "{app}";Permissions: users-modify;
|
||||||
|
Name: "{app}\Chrome";Permissions: users-modify;Flags: uninsalwaysuninstall
|
||||||
|
Name: "{app}\ChromeHeadlessShell";Permissions: users-modify;Flags: uninsalwaysuninstall
|
||||||
Name: "{commonappdata}\ayanova";Permissions: users-modify;
|
Name: "{commonappdata}\ayanova";Permissions: users-modify;
|
||||||
Name: "{commonappdata}\ayanova\logs";Permissions: users-modify;
|
Name: "{commonappdata}\ayanova\logs";Permissions: users-modify;
|
||||||
|
|
||||||
|
|
||||||
[UninstallDelete]
|
[UninstallDelete]
|
||||||
Type: filesandordirs; Name: "{app}\.local-chromium\*"
|
Type: filesandordirs; Name: "{app}\Chrome\*"
|
||||||
|
Type: filesandordirs; Name: "{app}\ChromeHeadlessShell\*"
|
||||||
|
|
||||||
[Icons]
|
[Icons]
|
||||||
Name: "{autoprograms}\AyaNova server\{#MyAppName}"; Filename: "{app}\AyaNova.exe";IconFilename: "{app}\AyaNova.exe";
|
Name: "{autoprograms}\AyaNova server\{#MyAppName}"; Filename: "{app}\AyaNova.exe";IconFilename: "{app}\AyaNova.exe";
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ Example LINUX config.json entry
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
...other properties...
|
...other properties...
|
||||||
"AYANOVA_BACKUP_PG_DUMP_PATH": "/usr/lib/postgresql/14.1/bin/"
|
"AYANOVA_BACKUP_PG_DUMP_PATH": "/usr/lib/postgresql/16.3/bin/"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -31,20 +31,20 @@ Example WINDOWS config.json entry
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
...other properties...
|
...other properties...
|
||||||
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin"
|
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\16\\bin"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Example command line parameter
|
Example command line parameter
|
||||||
|
|
||||||
`ayanova.exe --AYANOVA_BACKUP_PG_DUMP_PATH="/usr/lib/postgresql/14.1/bin/"` (not real)
|
`ayanova.exe --AYANOVA_BACKUP_PG_DUMP_PATH="/usr/lib/postgresql/16.3/bin/"` (not real)
|
||||||
|
|
||||||
Example environment variable
|
Example environment variable
|
||||||
|
|
||||||
Windows
|
Windows
|
||||||
|
|
||||||
`set "AYANOVA_BACKUP_PG_DUMP_PATH=C:\Program Files\PostgreSQL\14\bin"` (not real)
|
`set "AYANOVA_BACKUP_PG_DUMP_PATH=C:\Program Files\PostgreSQL\16\bin"` (not real)
|
||||||
|
|
||||||
Linux
|
Linux
|
||||||
|
|
||||||
`export AYANOVA_BACKUP_PG_DUMP_PATH="/usr/lib/postgresql/14.1/bin/"` (not real)
|
`export AYANOVA_BACKUP_PG_DUMP_PATH="/usr/lib/postgresql/16.3/bin/"` (not real)
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ The ASP.NET Core runtime will see IIS and install appropriate components but onl
|
|||||||
|
|
||||||
AyaNova is built upon the ASP.NET Core runtime version 8.x.x and it should be present **before** AyaNova is installed.
|
AyaNova is built upon the ASP.NET Core runtime version 8.x.x and it should be present **before** AyaNova is installed.
|
||||||
|
|
||||||
**Warning** Microsoft provides several different links to asp.net core downloads; the one you **must** choose is the link labelled "Hosting bundle".
|
**Warning** Microsoft provides several different links to asp.net core downloads; the one you **must** choose is the link labelled "Hosting bundle" and it is in the runtimes section under Windows.
|
||||||
|
|
||||||
Download the ASP.NET Core **Hosting bundle** runtime here [https://dotnet.microsoft.com/en-us/download/dotnet/8.0](https://dotnet.microsoft.com/en-us/download/dotnet/8.0).
|
Download the ASP.NET Core **Hosting bundle** runtime here [https://dotnet.microsoft.com/en-us/download/dotnet/8.0](https://dotnet.microsoft.com/en-us/download/dotnet/8.0).
|
||||||
|
|
||||||
@@ -196,7 +196,7 @@ The default installed `config.json` file will initially have the following:
|
|||||||
"AYANOVA_USE_URLS": "http://*:7575",
|
"AYANOVA_USE_URLS": "http://*:7575",
|
||||||
"AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;",
|
"AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;",
|
||||||
"AYANOVA_DEFAULT_TRANSLATION": "en",
|
"AYANOVA_DEFAULT_TRANSLATION": "en",
|
||||||
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin",
|
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\16\\bin",
|
||||||
"AYANOVA_DATA_PATH": "%ProgramData%\\ayanova",
|
"AYANOVA_DATA_PATH": "%ProgramData%\\ayanova",
|
||||||
"AYANOVA_LOG_LEVEL": "Info"
|
"AYANOVA_LOG_LEVEL": "Info"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ The default installed `config.json` file will initially have the following:
|
|||||||
"AYANOVA_USE_URLS": "http://*:7575",
|
"AYANOVA_USE_URLS": "http://*:7575",
|
||||||
"AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;",
|
"AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;",
|
||||||
"AYANOVA_DEFAULT_TRANSLATION": "en",
|
"AYANOVA_DEFAULT_TRANSLATION": "en",
|
||||||
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin",
|
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\16\\bin",
|
||||||
"AYANOVA_DATA_PATH": "%ProgramData%\\ayanova",
|
"AYANOVA_DATA_PATH": "%ProgramData%\\ayanova",
|
||||||
"AYANOVA_LOG_LEVEL": "Info"
|
"AYANOVA_LOG_LEVEL": "Info"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user