Skip to content

Commit

Permalink
config: use slugify extension for project_shortname
Browse files Browse the repository at this point in the history
  • Loading branch information
Pablo Panero authored and fenekku committed Apr 28, 2020
1 parent 2a363e6 commit 0493d7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"project_name": "My Site",
"project_shortname": "{{ cookiecutter.project_name | lower | replace(' ', '-') }}",
"project_shortname": "{{ cookiecutter.project_name | slugify() }}",
"project_site": "{{ cookiecutter.project_shortname }}.com",
"github_repo": "{{ cookiecutter.project_shortname }}/{{ cookiecutter.project_shortname }}",
"description": "Invenio RDM {{ cookiecutter.project_name }} Instance",
Expand All @@ -10,4 +10,4 @@
"database": ["postgresql", "mysql", "sqlite"],
"elasticsearch": ["7", "6"],
"file_storage": ["local", "S3"]
}
}

0 comments on commit 0493d7f

Please sign in to comment.