Visit the live site: https://Thepathakarpit.github.io/flacmusicstore/frontend/
cd frontend
python -m http.server 8000
/flac
├── backend/
│ ├── app.py # Flask backend server
│ ├── config.py # Configuration settings
│ ├── requirements.txt # Python dependencies
│ └── utils/
│ ├── drive_helper.py # Google Drive API functions
│ └── csv_helper.py # CSV operations
├── frontend/
│ ├── index.html # Main page
│ ├── css/
│ │ └── style.css # Styling
│ └── js/
│ └── main.js # Frontend logic
├── data/
│ └── tracks.csv # Track metadata and Drive IDs
└── README.md # Project documentation
credentials.json in the backend directory# Create and activate virtual environment
cd backend
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Update config.py
# Replace 'your_folder_id' with your actual Google Drive folder ID
No additional setup required for frontend files.
Start the backend server:
cd backend
python app.py
Start the frontend server (in a new terminal):
cd frontend
python -m http.server 8000