A cookiecutter (project template) for creating gRPC services in Python 3
- Powered by cruft which lets you create templates and update them in projects later as you make changes to the template
Make sure you have cruft installed using Install Cruft
Create a new project:
cruft create https://github.com/usernames/sentieopy3_templateThe CLI interface will ask some basic questions, such the name of the project, and then generate the boilerplate code
After that you can make it a proper git repo:
cd <your-project-slug>
git init
git add .
git commit -m "Initial project structure from cruft template"You can get the updates into your project with:
cruft update