Add .env.example

This commit is contained in:
heboba
2026-02-26 20:33:50 +00:00
parent bd23a9da8a
commit 756f53ef3b
2 changed files with 47 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
# Spotify Daily Vibe Bot (Telegram + Spotify + Docker)
Telegram bot: https://t.me/spotify_vibe_bot (`@spotify_vibe_bot`)
Ready-to-run backend service that:
- connects to your Spotify account
@@ -39,6 +41,14 @@ For better recommendation quality, adding `LASTFM_API_KEY` is recommended.
4. Copy `.env.example` to `.env` and fill in the values.
5. Start:
If you are using the provided `docker-compose.yml` as-is, create the external Docker network once (used by Traefik labels/network wiring):
```bash
docker network create web || true
```
Then start:
```bash
docker compose up -d --build
```