Skip to content

Commit

Permalink
chore: re-sort the configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
pplmx committed Sep 16, 2024
1 parent 43dadca commit 6af067d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 21 deletions.
6 changes: 3 additions & 3 deletions template/cuda/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"project_slug": "{{ cookiecutter.project_name | slugify }}",
"package_name": "{{ cookiecutter.project_slug | replace('-', '_') }}",
"project_desc": "A nice cuda project",
"full_name": "Firstname Lastname",
"email": "email@example.com",
"full_name": "Firstname Lastname",
"github_username": "your-org-or-username",

"cxx_build_tool": ["cmake", "xmake"],
Expand All @@ -17,8 +17,8 @@
"project_slug": "Generated project identifier (slug)",
"package_name": "Generated package/module name",
"project_desc": "Brief project description",
"github_username": "GitHub username or organization",
"email": "Author's email address",
"full_name": "Author's full name",
"email": "Author's email address"
"github_username": "GitHub username or organization"
}
}
6 changes: 3 additions & 3 deletions template/cxx/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"project_slug": "{{ cookiecutter.project_name | slugify }}",
"package_name": "{{ cookiecutter.project_slug | replace('-', '_') }}",
"project_desc": "A nice cxx project",
"full_name": "Firstname Lastname",
"email": "email@example.com",
"full_name": "Firstname Lastname",
"github_username": "your-org-or-username",

"cxx_build_tool": ["cmake", "xmake"],
Expand All @@ -16,8 +16,8 @@
"project_slug": "Generated project identifier (slug)",
"package_name": "Generated package/module name",
"project_desc": "Brief project description",
"github_username": "GitHub username or organization",
"email": "Author's email address",
"full_name": "Author's full name",
"email": "Author's email address"
"github_username": "GitHub username or organization"
}
}
8 changes: 3 additions & 5 deletions template/go/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,20 @@
"project_slug": "{{ cookiecutter.project_name | slugify }}",
"package_name": "{{ cookiecutter.project_slug | replace('-', '_') }}",
"project_desc": "A nice go project",
"full_name": "Firstname Lastname",
"email": "email@example.com",
"full_name": "Firstname Lastname",
"github_username": "your-org-or-username",


"go_version": "1.22",


"__gh_slug": "{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}",
"__prompts__": {
"project_name": "Enter your project name",
"project_slug": "Generated project identifier (slug)",
"package_name": "Generated package/module name",
"project_desc": "Brief project description",
"github_username": "GitHub username or organization",
"email": "Author's email address",
"full_name": "Author's full name",
"email": "Author's email address"
"github_username": "GitHub username or organization"
}
}
8 changes: 3 additions & 5 deletions template/py/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,20 @@
"project_slug": "{{ cookiecutter.project_name | slugify }}",
"package_name": "{{ cookiecutter.project_slug | replace('-', '_') }}",
"project_desc": "A nice python project",
"full_name": "Firstname Lastname",
"email": "email@example.com",
"full_name": "Firstname Lastname",
"github_username": "your-org-or-username",


"python_version": "3.10",


"__gh_slug": "{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}",
"__prompts__": {
"project_name": "Enter your project name",
"project_slug": "Generated project identifier (slug)",
"package_name": "Generated package/module name",
"project_desc": "Brief project description",
"github_username": "GitHub username or organization",
"email": "Author's email address",
"full_name": "Author's full name",
"email": "Author's email address"
"github_username": "GitHub username or organization"
}
}
8 changes: 3 additions & 5 deletions template/ts/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,20 @@
"project_slug": "{{ cookiecutter.project_name | slugify }}",
"package_name": "{{ cookiecutter.project_slug | replace('-', '_') }}",
"project_desc": "A nice typescript project",
"full_name": "Firstname Lastname",
"email": "email@example.com",
"full_name": "Firstname Lastname",
"github_username": "your-org-or-username",


"node_version": "20",


"__gh_slug": "{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}",
"__prompts__": {
"project_name": "Enter your project name",
"project_slug": "Generated project identifier (slug)",
"package_name": "Generated package/module name",
"project_desc": "Brief project description",
"github_username": "GitHub username or organization",
"email": "Author's email address",
"full_name": "Author's full name",
"email": "Author's email address"
"github_username": "GitHub username or organization"
}
}

0 comments on commit 6af067d

Please sign in to comment.