From 2178d83348ee012477e45afbf1a21b5c5eb43040 Mon Sep 17 00:00:00 2001 From: Hunter Date: Sun, 8 Sep 2019 00:07:03 -0400 Subject: [PATCH] Actions: create ci-config.json --- .github/ci-config.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/ci-config.json diff --git a/.github/ci-config.json b/.github/ci-config.json new file mode 100644 index 0000000..6b9044a --- /dev/null +++ b/.github/ci-config.json @@ -0,0 +1,32 @@ +{ + "title": "Pixel Horse CI", + "contactEmail": "noreply@pony.dev", + "port": 8090, + "adminPort": 8091, + "host": "http://localhost:8090/", + "local": "localhost:8090", + "adminLocal": "localhost:8091", + "secret": "pixel", + "token": "horse", + "db": "mongodb://pixel:horse@mongo:27017/pixelhorse", + "oauth": { + "google": { + "clientID": "snake", + "clientSecret": "oil" + } + }, + "assetsPath": "assets-source", + "servers": [ + { + "id": "ci", + "port": 8090, + "path": "/s00/ws", + "local": "localhost:8090", + "name": "CI test server", + "desc": "GitHub Actions checking in", + "flags": { + "test": false + } + } + ] +}