-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
55 lines (55 loc) · 1.68 KB
/
app.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "School in the CLoud",
"description": "An Express + Node.js API for School in the Cloud",
"repository": "https://github.com/labs13-school-cloud/labs13-school-cloud-BE",
"logo": "https://i.imgur.com/jm8jMeN.png",
"keywords": [
"node",
"express",
"Lambda School",
"Lambda Labs"
],
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"as": "DATABASE_URL"
}
],
"env": {
"APP_BASE_URL": {},
"STRIPE_SECRET_KEY": {
"description": "Provided by Stripe; the Secret Key for your Stripe account"
},
"STRIPE_PUBLIC_KEY": {
"description": "Provided by Stripe; the Public Key for your Stripe account"
},
"STRIPE_TEST_SECRET_KEY": {
"description": "Provided by Stripe; the Secret Key for you to test your Stripe account with"
},
"STRIPE_TEST_PUBLIC_KEY": {
"description": "Provided by Stripe; the Public Key for to test your Stripe account"
},
"SLACK_CLIENT_ID": {
"description": "Your Slack app's Client ID"
},
"SLACK_SECRET": {
"description": "Your Slack app's Client Secret"
},
"TWILIO_SID": {
"description": "Your Twilio Account SID (See: https://www.twilio.com/console)"
},
"TWILIO_TOKEN": {
"description": "Your TWILIO Auth Token (See: https://www.twilio.com/console)"
},
"TWILIO_NUMBER": {
"description": "The phone number you have set up with Twilio (See: https://www.twilio.com/console/phone-numbers/incoming)"
},
"SENDGRID_API_KEY": {
"description": "The API Key associated with your SendGrid account"
}
},
"scripts": {
"postdeploy": "npx knex migrate:latest && npx knex seed:run"
},
"success_url": "/"
}