Adding config for functional tests

This commit is contained in:
claudemiro
2016-03-03 21:39:15 -03:00
parent baf551ecdf
commit 8810e523f0
2 changed files with 21 additions and 1 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
client: go run client.go
server: go run ../main.go -config ./config.json -logtostderr
server: go run ../main.go -config ./functional-config.json -logtostderr
+20
View File
@@ -0,0 +1,20 @@
{
"Host": ":8080",
"Encrypted": false,
"SSLHost": ":8090",
"SSLKeyFile": "key.pem",
"SSLCertFile": "cert.pem",
"Apps": [
{
"ApplicationDisabled": false,
"OnlySSL": false,
"Secret": "7ad3753142a6693b25b9",
"Key": "278d525bdf162c739803",
"Name": "App for Functional Test",
"AppID": "1",
"UserEvents": true,
"WebHooks": false,
"URLWebHook": "http://127.0.0.1:4567/php/hook.php"
}
]
}