forked from 03ntity/CTFd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
45 lines (45 loc) · 1.41 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
{
"name": "CTFd",
"description": "CTFd is a Capture The Flag framework focusing on ease of use and customizability. It comes with everything you need to run a CTF and it's easy to customize with plugins and themes.",
"repository": "https://github.com/CTFd/CTFd",
"logo": "https://github.com/CTFd/CTFd/raw/master/CTFd/themes/core/static/img/logo.png?raw=true",
"buildpacks": [{
"url": "heroku/python"
}],
"addons": [{
"plan": "heroku-postgresql:hobby-dev",
"as": "DATABASE"
},
{
"plan": "heroku-redis:hobby-dev",
"as": "REDIS"
}
],
"env": {
"UPLOAD_PROVIDER": {
"description": "Specifies the service that CTFd should use to store files",
"required": true,
"value": "s3"
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS access token used to authenticate to the S3 bucket",
"required": true,
"value": ""
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS secret token used to authenticate to the S3 bucket.",
"required": true,
"value": ""
},
"AWS_S3_BUCKET": {
"description": "The unique identifier for your S3 bucket",
"required": true,
"value": ""
},
"AWS_S3_ENDPOINT_URL": {
"description": "A URL pointing to a custom S3 implementation. Leave empty for default AWS S3 endpoint",
"required": false,
"value": ""
}
}
}