mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
This introduces examples of a gunicorn systemd service in addition to git script wrappers that can be used for poetry virtualenv-driven installations. Signed-off-by: Kevin Morris <kevr@0cost.org>
6 lines
185 B
Bash
6 lines
185 B
Bash
#!/bin/bash
|
|
# Wrapper script used to call aurweb-git-update externally when
|
|
# utilizing an app-based virtualenv.
|
|
aurweb_dir="$HOME"
|
|
cd $aurweb_dir
|
|
exec poetry run aurweb-git-serve "$@"
|