A lightweight file sharing application for your home NAS.
LocalDrop is a little project I'm working on as a personal challenge, building something from scratch while getting better at web programming (and programming as a whole).
If you happen to stumble across this project and have the curiosity to check it out, I'm open to suggestions or anything that might help improve my learning. :)
Note: Not deployment-ready. For local/development use only.
1. Set up a virtual environment and install dependencies
python -m venv venv
pip install -r requirements.txt2. Activate the virtual environment
# Linux / macOS
source venv/bin/activate
# Windows
venv\Scripts\activate3. Run the development server
uvicorn main:app --reloadThe app will be available at http://localhost:8000.