9 lines
299 B
Bash
Executable File
9 lines
299 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")"
|
|
|
|
# Launch Streamlit from the project virtual environment (opens browser automatically)
|
|
.venv/bin/python -m streamlit run app.py
|