-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·22 lines (19 loc) · 767 Bytes
/
Makefile
File metadata and controls
executable file
·22 lines (19 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
kafka-create-topics:
./vendor/bin/sail exec kafka bash -lc "kafka-topics --bootstrap-server kafka:9092 --create --if-not-exists --topic tasks.status.updated --replication-factor 1 --partitions 1"
./vendor/bin/sail exec kafka bash -lc "kafka-topics --bootstrap-server kafka:9092 --create --if-not-exists --topic comments.created --replication-factor 1 --partitions 1"
test:
yarn build
yarn playwright install
php artisan config:clear --env=testing
php artisan test --coverage --parallel
# php artisan test --parallel --group=feature
lint:
make ide
./vendor/bin/phpstan analyse
./vendor/bin/rector process --ansi
./vendor/bin/pint --parallel
yarn lint
ide:
php artisan ide-helper:generate
php artisan ide-helper:models -RW
php artisan ide-helper:meta