-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcookiecutter.json
More file actions
executable file
·43 lines (43 loc) · 1.18 KB
/
Copy pathcookiecutter.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.18 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
{
"project_name": null,
"project_slug": "{{ cookiecutter.project_name | slugify(separator='') }}",
"service_slug": "backend",
"project_dirname": "backend",
"django_settings_dirname": "{{ cookiecutter.project_slug | slugify(separator='') }}",
"internal_service_port": "8000",
"terraform_backend": "gitlab",
"terraform_cloud_organization": "",
"media_storage": ["digitalocean-s3", "other-s3", "local", "none"],
"use_valkey": "false",
"use_postgres": "true",
"postgres_create_database": "true",
"use_vault": "false",
"python_version": "3.14",
"minos_service_image": "registry.gitlab.com/20tab-open/minos/service:latest",
"opentofu_component_version": "3.11.0",
"opentofu_version": "1.10.6",
"resources": {
"envs": [
{
"name": "development",
"slug": "dev",
"cluster_slug": "main",
"host": ""
},
{
"name": "staging",
"slug": "stage",
"cluster_slug": "main",
"host": ""
},
{
"name": "production",
"slug": "prod",
"cluster_slug": "main",
"host": ""
}
]
},
"tfvars": {},
"_extensions": ["cookiecutter.extensions.SlugifyExtension"]
}