Files
spotify-cantina/entrypoint.sh
T
2026-04-23 16:12:16 -04:00

10 lines
198 B
Bash

#!/bin/sh
set -e
# Archivos de datos — crearlos si no existen para que los bind mounts funcionen
touch cantina.db .spotify_cache
exec uvicorn app.main:app \
--host 0.0.0.0 \
--port 8000