#!/bin/bash
# Simple script to serve the F-Droid repository locally for testing.
# Runs on port 8080 by default.

echo "Starting local F-Droid repository server on http://localhost:8080/"
echo "Add this URL to your F-Droid client to test."

cd repo || { echo "Run this from the FDROIDREPO directory"; exit 1; }
python3 -m http.server 8080
