This is a Cookiecutter template for a simple Hello World test.
To create a new project using this template, follow these steps:
-
Though you can create a new repository starting from local end, it is simpler to create a new repository on GitHub and clone it to your local machine.
Once you did that, clone that empty repository to your local machine:git clone <git-repo-link>
-
Install Cookiecutter:
pip install cookiecutter
-
Generate a new project using this template (coping from Github):
cookiecutter gh:Rsirp0c/hello-world-cookiecutter
After running the command, you will enter values for the following variables (default values are in parentheses):
[1/4] project_name (Hello World): cookiecutter_demo [2/4] project_slug (cookiecutter_demo): [3/4] author_name (Author's Name): hcheng [4/4] description (A simple coockiecutter demo project.):
-
Navigate to the newly created project directory:
cd your_project_name
-
Push the updated repository:
git add . git commit -m "commit after cookiecutter project creation"