# config-server **Repository Path**: mirrors_cloudfoundry/config-server ## Basic Information - **Project Name**: config-server - **Description**: Example config server that integrates with BOSH Director - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Config Server - CI: - [API Docs](docs/api.md) See [config-server-release](https://github.com/cloudfoundry/config-server-release) for the release repo for config-server See [bosh-notes](https://github.com/cloudfoundry/bosh-notes/blob/master/proposals/config-server.md) for more information ## Contributing All PRs and code should be against the `develop` branch. Before submitting PRs, you should make sure that tests are passing properly. ### Unit tests Before running the unit test on your local machine, you should install `golangci-lint` following its documentation, see . (Indeed, the way the [lint](bin/lint) script installs `golangci-lint` is not suitable for running on a local machine.) Then run the unit tests using the dedicated script. ```bash bin/test-unit ``` ### Integration tests There are 3 distinct flavors of integration tests. Run the relevant one, or all, depending on the changes you've done. ```bash bin/test-integration memory # <- uses an in-memory database bin/test-integration mysql # <- uses a MySQL database bin/test-integration postgresql # <- uses a PostgreSQL database ```