- Auto regenerate poetry pyproject.toml from all requirements.txt with script poetry_update.py - Sort dependancy in pyproject.toml - Rename directory venv to .venv - In bash, use USER instead of whoami - Remove python3 from ubuntu dependancy. Ignore python from system. - Use pyenv with poetry - Simplify pip installation script
15 lines
413 B
Bash
Executable file
15 lines
413 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
. ./env_var.sh
|
|
|
|
#EL_MANIFEST_PROD="./default.xml"
|
|
#EL_MANIFEST_DEV="./manifest/default.dev.xml"
|
|
|
|
# Update git-repo
|
|
git daemon --base-path=. --export-all --reuseaddr --informative-errors --verbose &
|
|
DAEMON_PID=$!
|
|
|
|
./.venv/repo init -u git://127.0.0.1:9418/ -b $(git rev-parse --abbrev-ref HEAD) -m ${EL_MANIFEST_DEV}
|
|
./.venv/repo sync -v --force-sync -m ${EL_MANIFEST_DEV}
|
|
|
|
kill ${DAEMON_PID}
|