17 lines
392 B
Bash
17 lines
392 B
Bash
# Set any config versions here
|
|
# Docs: https://docs.coopcloud.tech/maintainers/handbook/#manage-configs
|
|
export ABRA_ENTRYPOINT_VERSION=v1
|
|
export NGINX_CONF_VERSION=v2
|
|
export PG_BACKUP_VERSION=v1
|
|
export MIGRATE_VERSION=v1
|
|
export LIVEKIT_CONFIG_VERSION=v2
|
|
|
|
environment() {
|
|
# this exports all the secrets as environment variables
|
|
source /abra-entrypoint.sh -e
|
|
}
|
|
|
|
migrate() {
|
|
/migrate.sh
|
|
}
|