-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcookiecutter.json
More file actions
30 lines (30 loc) · 920 Bytes
/
cookiecutter.json
File metadata and controls
30 lines (30 loc) · 920 Bytes
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
{
"project_name": "My Project",
"author_name": "ThinkNimble",
"email": "hello@thinknimble.com",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
"_extensions": [
"cookiecutter.extensions.RandomStringExtension"
],
"_copy_without_render": [
"clients/web/react/src/components",
"clients/web/react/src/pages/app-or-auth.tsx",
"clients/web/react/src/pages/index.ts",
"clients/web/react/src/pages/layout.tsx",
"*/swagger-ui.html",
"clients/mobile/react-native/src/screens/settings/edit-profile.tsx",
"clients/mobile/react-native/src/screens/settings/main-settings.tsx",
"clients/web/react/node_modules",
"clients/mobile/react-native/node_modules"
],
"mail_service": [
"Mailgun",
"Amazon SES",
"Custom SMTP"
],
"client_app": [
"React",
"None"
],
"include_mobile": "n"
}