-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathscalingo.json
More file actions
81 lines (81 loc) · 2.66 KB
/
scalingo.json
File metadata and controls
81 lines (81 loc) · 2.66 KB
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
{
"name": "Sites conformes",
"description": "Basic installation of the sites-conformes app",
"logo": "https://raw.githubusercontent.com/numerique-gouv/sites-conformes/refs/heads/main/static/artwork/logo-white-bg.svg",
"repository": "https://github.com/numerique-gouv/sites-conformes",
"ref": "production",
"website": "https://sites.beta.gouv.fr",
"env": {
"ALLOWED_HOSTS": {
"description": "List of allowed host names, separated by commas (domain names only)",
"value": "sc-example.osc-fr1.scalingo.io,example.sites.beta.gouv.fr"
},
"HOST_URL": {
"description": "The main hostname (domain name only)",
"value": "example.sites.beta.gouv.fr"
},
"DEFAULT_FROM_EMAIL": {
"description": "The default email address for sending transactional emails. Leave empty to disable emails entirely.",
"value": ""
},
"EMAIL_HOST": {
"description": "The email address for sending transactional emails",
"value": "smtp-relay.brevo.com"
},
"EMAIL_HOST_PASSWORD": {
"description": "The email password for sending transactional emails",
"value": "example-password"
},
"EMAIL_HOST_USER": {
"description": "The email user for sending transactional emails",
"value": "example.user@smtp-brevo.com"
},
"EMAIL_PORT": {
"description": "The email port for sending transactional emails",
"value": "587"
},
"EMAIL_TIMEOUT": {
"description": "The email timeout for sending transactional emails",
"value": "30"
},
"WAGTAIL_PASSWORD_RESET_ENABLED": {
"description": "Allows the 'Reset password' form on the login page. Only set to true if actual email settings have been set",
"value": false
},
"SECRET_KEY": {
"description": "Django secret key",
"generator": "secret"
},
"S3_BUCKET_NAME": {
"description": "The name of the S3 bucket used to store user-imported medias.",
"value": "sc-example"
},
"S3_BUCKET_REGION": {
"description": "The region of the S3 bucket",
"value": "eu-west-par"
},
"S3_HOST": {
"description": "The host of the S3 bucket",
"value": "s3.eu-west-par.io.cloud.ovh.net"
},
"S3_KEY_ID": {
"description": "The access key of the S3 bucket",
"value": "example-access-key"
},
"S3_KEY_SECRET": {
"description": "The secret key of the S3 bucket",
"value": "example-secret"
},
"S3_LOCATION": {
"description": "The base path for user imported medias in the S3 bucket",
"value": "medias"
}
},
"formation": {
"web": {
"amount": 1,
"size": "M"
}
},
"addons": ["scalingo-postgresql"]
}