From 6116ab236f704d5e6b18937e65fde1aa1177a070 Mon Sep 17 00:00:00 2001 From: jlin816 Date: Sun, 9 Jul 2017 22:17:38 -0400 Subject: [PATCH] Add app.json to deploy to heroku --- app.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 000000000..2dbf49b29 --- /dev/null +++ b/app.json @@ -0,0 +1,45 @@ +{ + "name": "Quill", + "description": "Registration, for hackathons!", + "env": { + "NODE_ENV": { + "description": "dev or production", + "value": "dev" + }, + "DATABASE": { + "description": "URI for your MongoDB database", + "value": "" + }, + "JWT_SECRET": { + "description": "Long random string used to verify JWT tokens for user authentication", + "generator": "secret" + }, + "ROOT_URL": { + "description": "Root URL for your registration system", + "value": "http://localhost:3000" + }, + "ADMIN_EMAIL": { + "description": "Credentials for the admin user created at app initialization", + "value": "admin@hackmit.org" + }, + "ADMIN_PASS": "party", + "EMAIL_CONTACT": { + "description": "Used to send verification, registration, and confirmation emails", + "value": "HackMIT Team " + }, + "EMAIL_HOST": "smtp.gmail.com", + "EMAIL_USER": "foo@bar.com", + "EMAIL_PASS": "password", + "EMAIL_PORT": "465", + "EMAIL_HEADER_IMAGE": "https://s3.amazonaws.com/hackmit-assets/Banner_600.jpg", + "TEAM_MAX_SIZE": { + "description": "Limits the number of users that can join a team", + "value": 4 + }, + "SLACK_HOOK": { + "description": "Used to send error messages to your Slack team when the API catches an error", + "value": "https://hooks.slack.com/services/your-api-key" + } + }, + "keywords": ["quill", "node", "express", "mongo"] +}