Skip to main content

Buildbot DbConfig plugin

Project description

Buildbot plugin that allows www-plugins to store settings in database.

This plugin creates the endpoint ‘/dbconfig/api/config?name={cfg}’.

Multiple configurations are supported. The ‘name’ parameter is a configuration name.

GET/PUT loads/stores configuration in buildbot database.

Add ‘dbconfig’ to master.cfg:

c[‘www’] = dict(plugins=dict(dbconfig={‘show_menu’:False}…}

The ‘show_menu’ parameter controls visibility of DbConfig menu item (mostly used for debug).

Example controller code:

name=… dbConfigUrl = ‘/dbconfig/api/config?name=’

$scope.loadConfig = () ->
$http.get(dbConfigUrl+name).then (cfg) ->

$scope.cfg = cfg.data

$scope.saveConfig = () ->

$http.put(dbConfigUrl+name,$scope.cfg)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

buildbot-dbconfig-0.1.2.tar.gz (708.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page