-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcookiecutter.json
33 lines (33 loc) · 1.46 KB
/
cookiecutter.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
{
"project_name": "My Awesome Scaf Project",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
"project_dash": "{{ cookiecutter.project_name.lower()|replace(' ', '-')|replace('_', '-')|replace('.', '-')|trim() }}",
"description": "Behold My Awesome Project!",
"author_name": "Joe Scaf",
"domain_name": "sixfeetup.com",
"email": "{{ cookiecutter.author_name.lower()|replace(' ', '-') }}@{{ cookiecutter.domain_name }}",
"version": "0.1.0",
"timezone": "US/Eastern",
"aws_region": "us-east-1",
"aws_account_id": "000000000000",
"create_nextjs_frontend": "y",
"debug": "n",
"mail_service": ["Mailgun", "Amazon SES", "Other SMTP"],
"operating_system": ["k3s", "talos"],
"_challenge": "n",
"use_celery": "n",
"use_sentry": "n",
"source_control_provider": ["github.com", "bitbucket.org", "none"],
"source_control_organization_slug": "sixfeetup",
"__prompts__": {
"source_control_organization_slug": "What is the organization slug for the source control provider?",
"source_control_provider": {
"__prompt__": "Which source control provider do you want to use?",
"bitbucket": "Bitbucket",
"github": "Github",
"none": "No source control provider"
}
},
"repo_name": "{{ cookiecutter.project_slug }}",
"repo_url": "git@{{ cookiecutter.source_control_provider }}:{{ cookiecutter.source_control_organization_slug }}/{{ cookiecutter.project_slug }}.git"
}