Skip to content

Latest commit

 

History

History
54 lines (43 loc) · 1.13 KB

File metadata and controls

54 lines (43 loc) · 1.13 KB

FLAC Music Store - Usage Guide

🎯 One-Click Commands

Start the Application

./run.sh

This will automatically:

  • Set up all dependencies
  • Start both backend and frontend
  • Display access URLs

Stop the Application

./stop.sh

This will cleanly stop all running services.

🌐 Access Points

Once running, visit:

🔧 Troubleshooting

Missing Dependencies

If you see Python venv errors:

sudo apt install python3.12-venv python3-pip

Port Conflicts

The script automatically finds available ports if defaults are busy.

Stopping Stuck Services

pkill -f "python.*app.py"
pkill -f "python.*http.server"

📁 Project Structure

flacmusicstore/
├── run.sh          # 🚀 Start everything  
├── stop.sh         # 🛑 Stop everything
├── backend/        # Flask API server
├── frontend/       # Static web files
└── README.md       # Full documentation

That's it! Just run ./run.sh and you're ready to go! 🎵