-
Notifications
You must be signed in to change notification settings - Fork 7
/
cookiecutter.json
23 lines (23 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
{
"_0": "\n\t Some information before the generation!\n",
"_1": "\n\t project_name: The name of the project.",
"_2": "\n\t repo_name: The directory name(automtically generated from the project_name).",
"_3": "\n\t db_password: The postgres user password for the database.",
"_4": "\n\t use_translation: Translation integration(Rosetta, ModelTransalation, admin integration)[True/False].",
"_5": "\n\t use_react: React, NodeJS, React-Router to replace the django frontend.[True/False]",
"_6": "\n\t admin_name: The name of the admin user who will receive the error messages.",
"_7": "\n\t admin_email: The email address of the admin user who will receive the error messages.",
"_8": "\n\t email_host_user: The gmail email address what the system can use to send emails.",
"_9": "\n\t email_host_password: The gmail email address password what the system can use to send emails.\n",
"_10": "\n\t Press ENTER to continue.\n",
"*": "{{cookiecutter._0 + cookiecutter._1 + cookiecutter._2 + cookiecutter._3 + cookiecutter._4 + cookiecutter._5 + cookiecutter._6 + cookiecutter._7 + cookiecutter._8 + cookiecutter._9 + cookiecutter._10}}",
"project_name": "project_name",
"repo_name": "{{cookiecutter.project_name|replace(' ', '_')}}",
"db_password": "db_password",
"use_translation": "True",
"use_react": "True",
"admin_name": "",
"admin_email": "",
"email_host_user": "",
"email_host_password": ""
}