This repository has been archived by the owner on Feb 24, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
48 lines (48 loc) · 1.55 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
{
"name": "mig3",
"description": "Detect regressions in your python3 migration!",
"website": "https://mverteuil.github.io/mig3/",
"repository": "https://github.com/mverteuil/mig3/",
"addons": [{ "plan": "heroku-postgresql", "options": { "version": "11" } }],
"env": {
"HEROKU": {
"description": "When present, activates Heroku Django settings overrides.",
"generator": "secret"
},
"DEBUG": {
"description": "Disable the Django debugging flag.",
"value": "0"
},
"HASHID_SALT_ACCOUNTS_BUILDER_ACCOUNT": {
"description": "Salt for ID hashing.",
"generator": "secret"
},
"HASHID_SALT_ACCOUNTS_USER_ACCOUNT": {
"description": "Salt for ID hashing.",
"generator": "secret"
},
"HASHID_SALT_BUILDS_BUILD": {
"description": "Salt for ID hashing.",
"generator": "secret"
},
"HASHID_SALT_PROJECTS_PROJECT": {
"description": "Salt for ID hashing.",
"generator": "secret"
},
"HASHID_SALT_PROJECTS_TARGET": {
"description": "Salt for ID hashing.",
"generator": "secret"
},
"SECRET_KEY": {
"description": "Django's secret key for cryptographic operations.",
"generator": "secret"
},
"SECRET_URL_SALT": {
"description": "Extra salt used to sign the administrator bootstrap process.",
"generator": "secret"
}
},
"keywords": ["migration", "migration-tool", "python", "python2", "python3"],
"logo": "https://raw.githubusercontent.com/mverteuil/mig3/master/assets/mig3-icon.png",
"stack": "container"
}