12 lines
304 B
Bash
Executable File
12 lines
304 B
Bash
Executable File
#!/bin/zsh
|
|
# Double-click this file in Finder to launch the Spotify→Tidal sync app.
|
|
|
|
# Change to the project directory (same folder as this script)
|
|
cd "$(dirname "$0")"
|
|
|
|
# Activate the virtual environment
|
|
source .venv/bin/activate
|
|
|
|
# Launch Streamlit (opens browser automatically)
|
|
streamlit run app.py
|