-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61d639f
commit bf068a6
Showing
30 changed files
with
47 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
{ | ||
"project_name": "deephaven plugin template", | ||
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}", | ||
"py_namespace": "plugins.{{cookiecutter.project_slug}}", | ||
"py_folder_name": "plugins/{{cookiecutter.project_slug}}", | ||
"py_pascal_case": "{{ cookiecutter.project_name.title().replace(' ', '') }}", | ||
"py_kebab_case": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}", | ||
"object_name": "plugins.{{ cookiecutter.py_pascal_case }}", | ||
"python_project_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}", | ||
"javascript_project_name": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}", | ||
"author_name": "Anonymous", | ||
"author_email": "Anonymous" | ||
"author_email": "Anonymous", | ||
"__py_namespace": "{{ cookiecutter.python_project_name }}", | ||
"__src_folder_name": "{{ cookiecutter.python_project_name }}", | ||
"__name_pascal_case": "{{ cookiecutter.python_project_name.replace('_', ' ') .title().replace(' ', '') }}", | ||
"__registered_object_name": "{{ cookiecutter.__name_pascal_case }}", | ||
"__object_name": "{{ cookiecutter.__name_pascal_case }}Object", | ||
"__object_file_name": "{{ cookiecutter.python_project_name }}_object", | ||
"__type_name": "{{ cookiecutter.__name_pascal_case }}Type", | ||
"__type_file_name": "{{ cookiecutter.python_project_name }}_type", | ||
"__message_stream_name": "{{ cookiecutter.__name_pascal_case }}MessageStream", | ||
"__js_plugin_obj_name": "{{ cookiecutter.__name_pascal_case }}JsPlugin", | ||
"__registration_name": "{{ cookiecutter.__name_pascal_case }}Registration" | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
....project_slug }}/src/js/package-lock.json → ..._project_name }}/src/js/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
7 changes: 3 additions & 4 deletions
7
...utter.project_slug }}/src/js/package.json → ...ython_project_name }}/src/js/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
...cookiecutter.project_slug }}/_register.py → ...ecutter.__src_folder_name }}/_register.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...{{ cookiecutter.project_slug }}_object.py → .../{{ cookiecutter.__object_file_name }}.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.