Copyright © 2077, Boar D'White foundation. All rights reserved.
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.56.2
ln -sf $(pwd)/pre-commit .git/hooks/pre-commit
# install pyenv
curl https://pyenv.run | bash
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrc
echo '[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zshrc
echo 'eval "$(pyenv init -)"' >> ~/.zshrc
pyenv install $(cat .python-version)
# install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv
. .venv/bin/activate
uv pip sync requirements.txt
# install latest chromedriver into ./chromedriver
# https://googlechromelabs.github.io/chrome-for-testing/
go test -race ./...
docker compose -f compose-dev.yaml up --build -d
go test --tags=e2e -race ./...
# set up backup cron
(crontab -l 2>/dev/null; echo "0 0 * * * /home/fh/dev/drone/backup.sh 2>&1 | logger -t drone_backup") | crontab -
cp ./config/default_config.yaml ./config.yaml
# set tg.api_key in config.yaml
docker compose up --build -d