Application Settings
Configuring the core behavior of Nova Automation.
Application Settings
The behavior of the Nova Automation services is controlled by the appsettings.json file located in the root installation directory (typically C:\Stellar\NovaAutomation).
File Structure
{
"ConnectionStrings": {
"DefaultConnection": "Server=.\\SQLEXPRESS;Database=NovaDB;Trusted_Connection=True;"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning"
}
},
"AppSettings": {
"StationId": "12345",
"Culture": "en-US",
"Theme": "Dark"
}
}
Key Sections
- ConnectionStrings: Defines how the application connects to the SQL Server. If you change your SQL password or server name, update it here.
- Logging: Controls the verbosity of logs. Set to
Debugwhen troubleshooting issues. - AppSettings:
StationId: Unique identifier for cloud synchronization.Culture: Controls language and number formatting (e.g.,tr-TRoren-US).