|
13 | 13 | [](https://github.com/{{ cookiecutter.github_name }}/{{ cookiecutter.project_name }}/blob/master/LICENSE) |
14 | 14 |
|
15 | 15 | {{ cookiecutter.project_description }} |
| 16 | + |
16 | 17 | </div> |
17 | 18 |
|
18 | 19 | ## Very first steps |
@@ -42,8 +43,9 @@ make install |
42 | 43 | ```bash |
43 | 44 | git add . |
44 | 45 | git commit -m ":tada: Initial commit" |
| 46 | +git branch -M main |
45 | 47 | git remote add origin https://github.com/{{ cookiecutter.github_name }}/{{ cookiecutter.project_name }}.git |
46 | | -git push -u origin master |
| 48 | +git push -u origin main |
47 | 49 | ``` |
48 | 50 |
|
49 | 51 | ### Initial setting up |
@@ -128,7 +130,7 @@ For creating your open source community: |
128 | 130 | ## Installation |
129 | 131 |
|
130 | 132 | ```bash |
131 | | -pip install {{ cookiecutter.project_name }} |
| 133 | +pip install -U {{ cookiecutter.project_name }} |
132 | 134 | ``` |
133 | 135 |
|
134 | 136 | or install with `Poetry` |
@@ -333,13 +335,13 @@ We use [`Release Drafter`](https://github.com/marketplace/actions/release-drafte |
333 | 335 | For Pull Request this labels are configured, by default: |
334 | 336 |
|
335 | 337 | | **Label** | **Title in Releases** | |
336 | | -|:-------------------------------------:|:----------------------:| |
337 | | -| `enhancement`, `feature` | 🚀 Features | |
| 338 | +| :-----------------------------------: | :---------------------: | |
| 339 | +| `enhancement`, `feature` | 🚀 Features | |
338 | 340 | | `bug`, `refactoring`, `bugfix`, `fix` | 🔧 Fixes & Refactoring | |
339 | | -| `build`, `ci`, `testing` | 📦 Build System & CI/CD | |
340 | | -| `breaking` | 💥 Breaking Changes | |
341 | | -| `documentation` | 📝 Documentation | |
342 | | -| `dependencies` | ⬆️ Dependencies updates | |
| 341 | +| `build`, `ci`, `testing` | 📦 Build System & CI/CD | |
| 342 | +| `breaking` | 💥 Breaking Changes | |
| 343 | +| `documentation` | 📝 Documentation | |
| 344 | +| `dependencies` | ⬆️ Dependencies updates | |
343 | 345 |
|
344 | 346 | You can update it in [`release-drafter.yml`](https://github.com/{{ cookiecutter.github_name }}/{{ cookiecutter.project_name }}/blob/master/.github/release-drafter.yml). |
345 | 347 |
|
|
0 commit comments