Files
image-drop/README.md
MEGASOL\simon.adams e6f055ec5b .
2025-08-26 13:50:28 +02:00

16 lines
513 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Immich Drop Uploader Clean Split (FastAPI + Static Frontend)
- **backend/** FastAPI server (upload proxy, WebSocket progress, runtime config API)
- **frontend/** Static HTML/JS (drag & drop, queue, ephemeral banner, settings modal)
## Run
```bash
cd backend
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env # edit base URL, API key, CONFIG_TOKEN (optional)
uvicorn backend.main:app --reload --host 0.0.0.0 --port 8080
# open http://localhost:8080
```