-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow configuration of piwik plugin using a configuration file #182
Comments
This doesn't really fit well together in the schema of settings that are managed via the UI: They are all stored in the database and have UI where the user can change them, so reading them from a config file (or env vars) would be a bit strange - they'd either need to always override the DB settings or somehow be imported into the DB (and updated if they change at a later time). Not sure that's a good solution for this tbh... |
How about the timezone, for instance. That's the approach I had in mind when I opened the ticket. Right now it's an UI setting but can also be defined with the DEFAULT_TIMEZONE environmental variable and hence, on a configuration file. Another example would be the S3 plugin, that can also be configured using this approach. With this change we could leverage the configuration as code advantages also for this plugin. |
|
How about disabling UI edition if the config option is specified using an environmental variable? I've seen this approach around and that would clearly establish priorities. |
So I was thinking about this, and introducing individual env vars seems like a bit of a mess (especially considering data types - settings are stored as JSON after all!). So my suggestion (ideally for you to contribute) would be to add an indico.conf setting SETTINGS_OVERRIDE = {
'plugin_piwik': {
'server_api_url': 'https://example.com'
}
} In the The documentation for this setting would clearly mention that it's an advanced feature and module/setting names need to be looked up in the code if someone wants to use it. As a bonus, the plugin settings form rendered from |
That's sounds like a nice solution for what we're looking for :) |
Just to avoid any misunderstanding and both sides waiting for the other to add it: Are you willing to contribute this? |
We should be able to work on this at some point, probably in a couple of weeks. Does that sound good to you? |
Sure! Sounds like something for 3.2.1 or 3.2.2 then ;) |
The default configuration options for piwik can not be overwritten by adding an entry in the configuration file indico.conf unlike the customizable settings for Indico.
I think it would be a nice to have, since it will allow having this configuration defined as code . The only working approach at this time is to set them manually through the UI.
The text was updated successfully, but these errors were encountered: