mirror of
https://github.com/owncloud/ocis
synced 2026-04-25 17:25:21 +02:00
* run api tests * run ocis via wrapper * add context, helpers and steps change ocis config * remove separate pipelines for special test cases * add context to behat config * fix suite name * set wrapper url while running tests * fix cors allow env name * address review * add ociswrapper codebase * add ci pipeline to build and cache wrapper * add step to check ociswrapper cache * invalidate wrapper cache and build new * build on pipeline step * undo unnecessary changes * undo unnecessary changes * fix php code * fix ocis run command * use tag for teardown * exclude wrapper vendor in codacy check * fix typos
14 lines
181 B
Go
14 lines
181 B
Go
package config
|
|
|
|
var config = map[string]string{
|
|
"port": "5000",
|
|
}
|
|
|
|
func Get(key string) string {
|
|
return config[key]
|
|
}
|
|
|
|
func Set(key string, value string) {
|
|
config[key] = value
|
|
}
|