mirror of
https://github.com/MrUnknownDE/sptify2yt.git
synced 2026-04-27 10:43:49 +02:00
docs: Add GitHub badge, improve setup instructions in README, and ignore cache directory.
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -142,3 +142,6 @@ dist
|
|||||||
.svelte-kit
|
.svelte-kit
|
||||||
|
|
||||||
# End of https://www.toptal.com/developers/gitignore/api/node
|
# End of https://www.toptal.com/developers/gitignore/api/node
|
||||||
|
|
||||||
|
# Application cache (analysis jobs and search results)
|
||||||
|
cache/
|
||||||
15
README.md
15
README.md
@@ -1,5 +1,7 @@
|
|||||||
# Spotify to YouTube Music Migration Tool
|
# Spotify to YouTube Music Migration Tool
|
||||||
|
|
||||||
|
[](https://github.com/MrUnknownDE/sptify2yt)
|
||||||
|
|
||||||
A Node.js web application that migrates your Spotify playlists to YouTube Music with a preview and review workflow.
|
A Node.js web application that migrates your Spotify playlists to YouTube Music with a preview and review workflow.
|
||||||
|
|
||||||
## ✨ Features
|
## ✨ Features
|
||||||
@@ -39,7 +41,8 @@ A Node.js web application that migrates your Spotify playlists to YouTube Music
|
|||||||
### Option 1: Local Development
|
### Option 1: Local Development
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Clone and enter directory
|
# Clone the repository
|
||||||
|
git clone https://github.com/MrUnknownDE/sptify2yt.git
|
||||||
cd sptify2yt
|
cd sptify2yt
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
@@ -58,16 +61,26 @@ Open http://localhost:3000 in your browser.
|
|||||||
### Option 2: Docker
|
### Option 2: Docker
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# Clone the repository
|
||||||
|
git clone https://github.com/MrUnknownDE/sptify2yt.git
|
||||||
|
cd sptify2yt
|
||||||
|
|
||||||
# Copy and configure environment
|
# Copy and configure environment
|
||||||
cp .env.example .env
|
cp .env.example .env
|
||||||
nano .env
|
nano .env
|
||||||
|
|
||||||
# Build and run
|
# Build and run
|
||||||
docker compose up -d
|
docker compose up -d
|
||||||
|
|
||||||
|
# View logs (optional)
|
||||||
|
docker compose logs -f
|
||||||
```
|
```
|
||||||
|
|
||||||
Open http://localhost:3000 in your browser.
|
Open http://localhost:3000 in your browser.
|
||||||
|
|
||||||
|
To stop: `docker compose down`
|
||||||
|
|
||||||
|
|
||||||
## ⚙️ Configuration
|
## ⚙️ Configuration
|
||||||
|
|
||||||
All settings are configured via environment variables (`.env` file):
|
All settings are configured via environment variables (`.env` file):
|
||||||
|
|||||||
Reference in New Issue
Block a user