docs: 📝 Add environment env to the launch command

This commit is contained in:
Louis Gallet 2024-07-01 17:53:33 +02:00
parent a5c9fc9319
commit bf43fb11d3
Signed by: lgallet
GPG Key ID: 84D3DF1528A84511
2 changed files with 2 additions and 1 deletions

View File

@ -2,4 +2,4 @@ client_id=
client_secret= client_secret=
n8n_webhook_add_tracks= n8n_webhook_add_tracks=
n8n_webhook_create_playlist= n8n_webhook_create_playlist=
enviroment=dev environment=production

View File

@ -24,6 +24,7 @@ docker run -d \
-e client_secret=SPOTIFY_CLIENT_SECRET \ -e client_secret=SPOTIFY_CLIENT_SECRET \
-e n8n_webhook_create_playlist=N8N_WEBHOOK_URL \ -e n8n_webhook_create_playlist=N8N_WEBHOOK_URL \
-e n8n_webhook_add_tracks=N8N_WEBHOOK_URL \ -e n8n_webhook_add_tracks=N8N_WEBHOOK_URL \
-e environment=production \
gitea.louisgallet.fr/lgallet/makethisplaylist:latest gitea.louisgallet.fr/lgallet/makethisplaylist:latest
``` ```