lasuite-docs as starting point

This commit is contained in:
2025-12-18 15:09:45 -05:00
parent 09afff17ce
commit 9c5f767cb8
9 changed files with 603 additions and 0 deletions

15
abra.sh Executable file
View File

@ -0,0 +1,15 @@
# Set any config versions here
# Docs: https://docs.coopcloud.tech/maintainers/handbook/#manage-configs
export ABRA_ENTRYPOINT_VERSION=v5
export NGINX_CONF_VERSION=v3
export PG_BACKUP_VERSION=v3
environment() {
# this exports all the secrets as environment variables
source /abra-entrypoint.sh -e
}
migrate() {
environment
python manage.py migrate --noinput
}