-
Notifications
You must be signed in to change notification settings - Fork 372
Expand file tree
/
Copy pathcookiecutter.json
More file actions
27 lines (27 loc) · 870 Bytes
/
cookiecutter.json
File metadata and controls
27 lines (27 loc) · 870 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
{
"project_slug": "fastapi-react-project",
"project_name": "{{cookiecutter.project_slug}}",
"project_tld": "com",
"port": "8000",
"postgres_user": "postgres",
"postgres_password": "password",
"postgres_database": "app",
"superuser_email": "admin@{{cookiecutter.project_name}}.{{cookiecutter.project_tld}}",
"superuser_password": "password",
"secret_key": "super_secret",
"_copy_without_render": [
"frontend/node_modules/*",
"frontend/public/*",
"frontend/src/views/*",
"frontend/src/utils/*",
"frontend/src/config/*",
"frontend/src/admin/*",
"frontend/src/__tests__/*",
"frontend/src/App.tsx",
"frontend/src/AppRoutes.tsx",
"frontend/src/decs.d.ts",
"frontend/src/index.css",
"frontend/src/logo.svg",
"frontend/src/react-app-env.d.ts"
]
}