Audios
This commit is contained in:
parent
65eb082134
commit
f0c307b82f
|
|
@ -15,7 +15,8 @@ set -euo pipefail
|
||||||
|
|
||||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
PROJECT_DIR="$(dirname "$SCRIPT_DIR")"
|
PROJECT_DIR="$(dirname "$SCRIPT_DIR")"
|
||||||
PYTHON="${PYTHON:-python3}"
|
PYTHON="/home/tatiana/desarrollo/html/taiage-spring/.venv/bin/python3"
|
||||||
|
#PYTHON="${PYTHON:-python3}"
|
||||||
LOG_PREFIX="[$(date '+%Y-%m-%d %H:%M:%S')]"
|
LOG_PREFIX="[$(date '+%Y-%m-%d %H:%M:%S')]"
|
||||||
|
|
||||||
echo "$LOG_PREFIX ── sync_audios.sh iniciado ──────────────────────────"
|
echo "$LOG_PREFIX ── sync_audios.sh iniciado ──────────────────────────"
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,12 @@ spring.jpa.open-in-view=false
|
||||||
# ── Thymeleaf ───────────────────────────────────────────────────
|
# ── Thymeleaf ───────────────────────────────────────────────────
|
||||||
spring.thymeleaf.cache=false
|
spring.thymeleaf.cache=false
|
||||||
|
|
||||||
|
# ── Recursos estáticos ──────────────────────────────────────────
|
||||||
|
# Los audios se generan en el filesystem (no van en el JAR), se sirven desde ahí.
|
||||||
|
# La ruta "file:src/main/resources/static/" permite que el cron actualice mp3 sin
|
||||||
|
# necesidad de recompilar. "classpath:/static/" mantiene el resto de estáticos (css, js…)
|
||||||
|
spring.web.resources.static-locations=file:src/main/resources/static/,classpath:/static/
|
||||||
|
|
||||||
# ── Stripe ──────────────────────────────────────────────────────
|
# ── Stripe ──────────────────────────────────────────────────────
|
||||||
stripe.secret-key=${STRIPE_SECRET_KEY}
|
stripe.secret-key=${STRIPE_SECRET_KEY}
|
||||||
stripe.webhook-secret=${STRIPE_WEBHOOK_SECRET}
|
stripe.webhook-secret=${STRIPE_WEBHOOK_SECRET}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue