-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
36 lines (36 loc) · 965 Bytes
/
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
{
"name": "Rails Stripe Sales Tax Sample",
"description": "Example Rails 4.2 app with Stripe, Payola, and TaxJar for a subscription membership site.",
"repository": "https://github.com/taxjar/rails-stripe-sales-tax-sample",
"logo": "http://www.taxjar.com/img/lander/logo-icon.svg",
"keywords": ["rails", "stripe", "taxjar", "sales tax"],
"env": {
"ADMIN_NAME": {
"description": "Your Name",
"value": ""
},
"ADMIN_EMAIL": {
"description": "Your Email Address",
"value": ""
},
"ADMIN_PASSWORD": {
"description": "Admin Password",
"value": ""
},
"STRIPE_API_KEY": {
"description": "Stripe API Key",
"value": ""
},
"STRIPE_PUBLISHABLE_KEY": {
"description": "Stripe Publishable Key",
"value": ""
},
"TAXJAR_API_KEY": {
"description": "TaxJar API Key",
"value": ""
}
},
"scripts": {
"postdeploy": "bundle exec rake db:setup"
}
}