diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-05-18 09:29:19 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2021-06-30 17:20:34 +0200 |
commit | af938c328011f942258091276a150c6810970dd4 (patch) | |
tree | e609f8255b246f3e29ed9d455823156b2fd056de /ogcp/cfg | |
parent | 1e7fce971acd38f072a07cf436d2a94897176be3 (diff) |
Fix configuration file template
ogcp fails to parse configuration file template because it misses a
comma.
Diffstat (limited to 'ogcp/cfg')
-rw-r--r-- | ogcp/cfg/ogcp.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/cfg/ogcp.json b/ogcp/cfg/ogcp.json index cff1cad..66a5304 100644 --- a/ogcp/cfg/ogcp.json +++ b/ogcp/cfg/ogcp.json @@ -1,7 +1,7 @@ { "IP": "127.0.0.1", "PORT": 8888, - "API_TOKEN": "c3fe7bb0395747ec42a25df027585871" + "API_TOKEN": "c3fe7bb0395747ec42a25df027585871", "USER": "user", "PASS": "pass" } |