This is an automated email from the ASF dual-hosted git repository. machristie pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/airavata-cookiecutter-django-app.git
commit 061cfff4c22f538abdfb67b0173dfef822859c8a Author: Marcus Christie <[email protected]> AuthorDate: Fri May 28 15:26:06 2021 -0400 AppConfig class name to end in "Config" --- cookiecutter.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookiecutter.json b/cookiecutter.json index b162761..d0f23d8 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -2,7 +2,7 @@ "project_name": "My Custom Django App", "project_slug": "{{ cookiecutter.project_name | slugify(separator='_')}}", "project_short_description": "Custom Django app with everything needed to be installed in the airavata-django-portal", - "app_config_class_name": "{{ cookiecutter.project_name | title | replace(' ', '') }}", + "app_config_class_name": "{{ cookiecutter.project_name | title | replace(' ', '') }}Config", "version": "0.1.0", "_copy_without_render": [ "*.html"
