Management commands
All checks were successful
Run code tests / Run-code-test (push) Successful in 1m0s

This commit is contained in:
Chicory ☕ 2024-07-27 02:36:31 +03:00
parent 686887825d
commit 83d95e3ef9
Signed by: chicory
GPG Key ID: AC95A793F70BEDCD
2 changed files with 15 additions and 1 deletions

View File

@ -1,5 +1,11 @@
composer := docker-compose run --rm composer-package-testing composer -d app
install:
@$(composer) install
prune:
@docker-compose rm -fsv
code-style-fix:
@$(composer) code-style-fix

View File

@ -5,6 +5,10 @@ Template for composer packages with CI and a Docker image for local development.
Commands
--------
### Install dependencies
```bash
make install
```
### Сode style fixer
```bash
@ -35,3 +39,7 @@ make run-unit-tests
```bash
make full-test
```
### Remove all docker data
```bash
make prune
```