beta.r3js.org
-=yb4f310 2017-10-02 12:02:07 +02:00
parent 447c4a18fb
commit 5b347466a5
13 changed files with 1919 additions and 11 deletions

View File

@ -3,7 +3,7 @@ alias s='cd /usr/share/cybafelo && ./start'
alias d='cd /usr/share/cybafelo && ./delete'
alias st='cd /usr/share/cybafelo && ./stop'
alias gl='cd /usr/share/cybafelo/game-lib'
alias p='cd /usr/share/cybafelo/3d-pong'
alias p='cd /usr/share/cybafelo/preview'
alias 3d='cd /usr/share/cybafelo/3d-editor'
alias api='cd /usr/share/cybafelo && ./start_api'
alias app='cd /usr/share/cybafelo && ./start_app'

File diff suppressed because it is too large Load Diff

View File

@ -27,6 +27,7 @@ var config = {
},
api16: {
url: protocol + '://' + user + '-api-v1.' + domain,
remoteUrl: protocol + '://live-api-v1.flyingspoon.de',
uploadPath: '/uploads'
},
tools: {

1
hosts
View File

@ -18,6 +18,7 @@
127.0.1.1 tj-cdn.cybafelo.com
127.0.1.1 tj-mail.cybafelo.com
127.0.1.1 tj-cron.cybafelo.com
127.0.1.1 tj-preview.cybafelo.com
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback

View File

@ -1,3 +1,3 @@
#!/bin/bash
cd /usr/share/cybafelo/api
pm2 start bin/start --node-args="--debug=3211" --name api
pm2 start bin/start --node-args="--inspect=3211" --name api

View File

@ -1,3 +1,3 @@
#!/bin/bash
cd /usr/share/cybafelo/app
pm2 start bin/start --node-args="--debug=3210" --name app
pm2 start bin/start --node-args="--inspect=3210" --name app

View File

@ -1,3 +1,3 @@
#!/bin/bash
cd /usr/share/gamewheel/cron
pm2 start bin/start --node-args="--debug=3216" --name cron
pm2 start bin/start --node-args="--inspect=3216" --name cron

View File

@ -1,3 +1,3 @@
#!/bin/bash
cd /usr/share/cybafelo/3d-editor
pm2 start server.js --node-args="--max-old-space-size=16000 --debug=3203" --name 3d-editor
pm2 start server.js --node-args="--max-old-space-size=16000 --inspect=3203" --name 3d-editor

View File

@ -1,3 +1,3 @@
#!/bin/bash
cd /usr/share/cybafelo/gate
pm2 start bin/start --node-args="--debug=3215" --name gate
pm2 start bin/start --node-args="--inspect=3215" --name gate

View File

@ -1,5 +1,5 @@
#!/bin/bash
cd /usr/share/cybafelo/api-v1
pm2 start bin/start --node-args="--max-old-space-size=16000 --debug=3204" --name api-v1
pm2 start bin/start --node-args="--max-old-space-size=16000 --inspect=3204" --name api-v1
cd /usr/share/cybafelo/3d-pong
pm2 start server.js --node-args="--max-old-space-size=16000 --debug=3201" --name 3d-pong
pm2 start server.js --node-args="--max-old-space-size=16000 --inspect=3201" --name 3d-pong

View File

@ -1,3 +1,3 @@
#!/bin/bash
cd /usr/share/cybafelo/port
pm2 start bin/start --node-args="--debug=3214" --name port
pm2 start bin/start --node-args="--inspect=3214" --name port

View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash
#cd /usr/share/cybafelo/3d-racing-server
#pm2 start app.js --node-args="--max-old-space-size=16000 --debug=3202" --name 3d-racing-server
#pm2 start app.js --node-args="--max-old-space-size=16000 --inspect=3202" --name 3d-racing-server

View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash
cd /usr/share/cybafelo/tools
pm2 start server.js --node-args="--max-old-space-size=16000 --debug=3209" --name tools
pm2 start server.js --node-args="--max-old-space-size=16000 --inspect=3209" --name tools