Added scripts for easy deployment.

This commit is contained in:
2020-12-19 10:42:20 +05:30
parent 89c93862bf
commit f4b85dcb41
6 changed files with 173 additions and 0 deletions

9
lint.sh Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
cd "$parent_path/bookie" || exit
npx prettier --write src/
npx ng lint --fix
cd "$parent_path/barker" || exit
isort barker
black barker
flake8 barker