In your command-line run the following commands:
brew doctor
brew update
package echomw | |
import ( | |
"time" | |
"github.com/labstack/echo" | |
"go.uber.org/zap" | |
"go.uber.org/zap/zapcore" | |
) |
In your command-line run the following commands:
brew doctor
brew update
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'array_indentation' => true, | |
'array_syntax' => ['syntax' => 'short'], | |
'binary_operator_spaces' => [ | |
'default' => 'single_space', |
Ops. https://gitlab.com': terminal prompts disabled
Ops. Username for 'https://codeberg.org':
Ops. etc
If you see this message, there is a short solution how to fix it here. In my case it appeared and it did not want to get fixed by many ways that are offered on the internet.
Some of the pieces of advice that did not work:
git config --global --add credential.helper manager
.PHONY: help | |
help: | |
@printf "%s\n" "Useful targets:" | |
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m make %-15s\033[0m %s\n", $$1, $$2}' | |
.PHONY: db-reset | |
db-reset: ## Reset the database | |
docker-compose exec web flask db reset --with-testdb | |
.PHONY: routes |