File: setup.sh

package info (click to toggle)
aiocomelit 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 480 kB
  • sloc: python: 888; sh: 40; makefile: 3
file content (15 lines) | stat: -rwxr-xr-x 351 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash
# Setups the repository.

# Stop on errors
set -e

POETRY_VERSION="2.3.2" # renovate: depName=poetry datasource=pypi

poetry self update "$POETRY_VERSION"
poetry env use python3
poetry sync --with dev
poetry run pre-commit install
poetry run pre-commit install --hook-type commit-msg
cd
npm install @commitlint/config-conventional