## Consolidate Configuration Files
### Key Changes: - **Unified Configuration**: Consolidated all configs into single package-named file - **Removed Separate Files**: Deleted wapt_api.ini, smtp.ini, rocket.ini - **Updated Functions**: Modified all functions to read from unified config - **Version Bump**: Updated to version 2-1 ### New Configuration Structure: ``` comi-apps-to-update-on-wapt-server.ini ├── [wapt] # WAPT server credentials ├── [notifications] # Notification preferences ├── [smtp] # Email configuration └── [rocket] # Rocket.Chat configuration ``` ### Benefits: - **Simpler Deployment**: Single config file instead of 4 separate files - **Better Organization**: Related settings grouped together - **Easier Management**: One file to backup and configure - **Cleaner Package**: No scattered configuration files ### Technical Updates: - Updated install() function to copy unified config only - Modified all config reading functions to use unified file path - Enhanced debug output with step-by-step progress tracking
This commit is contained in:
18
comi-apps-to-update-on-wapt-server.ini
Normal file
18
comi-apps-to-update-on-wapt-server.ini
Normal file
@@ -0,0 +1,18 @@
|
||||
[wapt]
|
||||
wapt_username = xxxxx
|
||||
wapt_password = xxxxx
|
||||
wapt_url = xxxxx
|
||||
|
||||
[notifications]
|
||||
enable_email = true
|
||||
enable_rocketchat = false
|
||||
notification_method = both
|
||||
|
||||
[smtp]
|
||||
from_addr =
|
||||
to_addr =
|
||||
password =
|
||||
smtpserver =
|
||||
|
||||
[rocket]
|
||||
url =
|
||||
Reference in New Issue
Block a user