Инструкции по запуску cookiecutter

master
Антон Касимов 2023-12-09 03:30:29 +03:00
parent d89a5842c1
commit 94c9a4e7c9
1 changed files with 24 additions and 4 deletions

View File

@ -1,10 +1,30 @@
# Installation # Project configuration stuff
Install nitpick: ## Enforcing configuration
pipx install nitpick
Enforcing is done with help of nitpick - a command-line tool.
### Installation
Install nitpick:
```sh
pipx install nitpick
```
### Usage
# Usage
To check for errors only: To check for errors only:
```sh
nitpick check nitpick check
```
To fix and modify your files directly: To fix and modify your files directly:
nitpick fix nitpick fix
## Initializing a project
### Python
```sh
cookiecutter https://gitea.radium.group/radium/project-configuration.git --directory cookiecutter-python
```