From 107edaa016b8da8948c8cd3aede97f32f9736d9d Mon Sep 17 00:00:00 2001 From: "Theunis J. Botha" Date: Tue, 14 Feb 2017 14:07:02 +0100 Subject: [PATCH] clients move to config --- clients.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 clients.js diff --git a/clients.js b/clients.js new file mode 100644 index 0000000..f16a936 --- /dev/null +++ b/clients.js @@ -0,0 +1,28 @@ +var clients = { + '3d-pong' : { + title : "Gamewheel Multiplayer VR Pong", + ogUrl : "http://3d-pong.gamewheel.local", + ogType : "website", + ogTitle : "Gamewheel Multiplayer VR Pong", + ogDescription : "Games is our game", + ogImage : "http://3d-pong.gamewheel.local/pong_image.png", + ctaUrl : "https://www.gamewheel.local", + account : 'root', + subAccount : 'root', + nameOfTheGame : 'pong' + }, + '3doo' : { + title : "3doo - VR Pong", + ogUrl : "http://3doo.gamewheel.local", + ogType : "website", + ogTitle : "3doo – VR App", + ogDescription : "Spiele PONG in 3d und VR mit 3doo", + ogImage : "http://3doo.gamewheel.local/pong_image.png", + ctaUrl : "https://3doo.com", + account : '3doo', + subAccount : 'root', + nameOfTheGame : 'pong' + } +}; + +module.exports = clients; \ No newline at end of file