forked from Strider-CD/strider
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Boxfile
26 lines (26 loc) · 1.03 KB
/
Boxfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# You can launch a new instance of this app using 'box go' command.
# Use 'box go --verbose' for debugging information.
aws.paperg.com:
db:
docker:
'brice/mongo': { ports: 27017 }
www:
stack: node
env:
PORT: 5000
DB_URI: mongodb://db:27017/strider
#
# This config section must match your github app key and the FQDN of your box.
# You can ignore this config if you don't care to receive webhook notifications.
# See: https://github.com/settings/applications/new
# Tutorial: http://screencast.com/t/2ruB1gGLm5
# The callback URL is: /auth/github/callback.
# So for the example below authorization callback URL is
# http://www.my-host-name.strider.aws.paperg.com:5000/auth/github/callback
# SERVER_NAME: http://www.my-host-name.strider.aws.paperg.com:5000
# PLUGIN_GITHUB_APP_ID: xxxxx
# PLUGIN_GITHUB_APP_SECRET: xxxxx
#
cmd:
- node bin/strider addUser --email [email protected] --password paperg123 --admin true
daemon: node bin/strider