-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapp.json
85 lines (85 loc) · 2.12 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "21 Deep Learning",
"description": "An example 21 endpoint that uses AWS for deep learning.",
"keywords": [
"django",
"heroku",
"aws",
"21",
"bitcoin",
"deep learning",
"style transfer",
"neural art"
],
"website": "https://21.co",
"repository": "https://github.com/21dotco/two1-deep-learning",
"logo": "https://assets.21.co/shared/img/21logo.png",
"scripts": {
"postdeploy": "python manage.py migrate"
},
"env": {
"DISABLE_COLLECTSTATIC": {
"description": "Disable static asset collection",
"value": "1"
},
"HASHIDS_SALT": {
"description": "A salt for hashids",
"generator": "secret"
},
"TWO1_USERNAME": {
"description": "21.co username"
},
"TWO1_WALLET_MNEMONIC": {
"description": "21 wallet mnemonic"
},
"AWS_DEFAULT_REGION": {
"description": "AWS region",
"value": "us-east-1"
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS access key"
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS secret access key"
},
"EC2_SSH_KEYPAIR_ID": {
"description": "The ID of the EC2 SSH keypair to ssh into launched instances"
},
"EC2_IAM_INSTANCE_PROFILE_ARN": {
"description": "The IAM instance profile ARN to use for launched instances"
},
"EC2_SECURITY_GROUP_NAME": {
"description": "The EC2 security group to use for launched instances"
},
"S3_BUCKET_NAME": {
"description": "The S3 bucket to store inputs and outupts in"
},
"IMGUR_CLIENT_ID": {
"description": "The imgur API client ID"
},
"IMGUR_CLIENT_SECRET": {
"description": "The imgur API secret."
},
"BUY_PRICE": {
"description": "The price to buy this endpoint, in satoshis.",
"value": "125000"
},
"DEBUG": {
"description": "Whether to run the app in DEBUG mode",
"value": "False"
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": [
"heroku-postgresql:hobby-dev"
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}