Skip to content

Instantly share code, notes, and snippets.

View goper's full-sized avatar

ALIAKSANDR OLEGOVITCH ZHALIAZOUSKI goper

  • Когнитивные технологии
  • Belarus
View GitHub Profile
@goper
goper / commands
Last active August 26, 2025 12:28
# Aramuz
```
php bin/phpunit
```
### БД
```
# Пересоздание схемы БД локально
# снёс базу
bin/console aramuz:vitess:drop-schema --force
bin/console aramuz:vitess:init-schema

🧠 Что делает этот манифест?

1. Namespace: report

Все объекты создаются в пространстве имён report.


2. Deployments и Services

@goper
goper / v-model
Last active March 22, 2024 11:33
<ChildComponent v-model="pageTitle" />
<!-- будет сокращённой версия для: -->
<ChildComponent
:modelValue="pageTitle"
@update:modelValue="pageTitle = $event"
/>
<ChildComponent
# show all plugins
rabbitmq-plugins list
# enable plugin
rabbitmq-plugins enable <plugin-name>
# enadisableble plugin
rabbitmq-plugins disable <plugin-name>