A lightweight SQLite Web administration tool based on Rust and Solid.js.
2.5K
A extreme lightweight SQLite Web administration tool based on Rust (Axum) and Solid.js.
Recommend using Docker to run this application.
docker run -d \
-p 3000:3000 \
-v sqlite.db:/app/db/sqlite.db \
-e API_KEY=your_secret_key \
--name sqlite-webui \
wangyucode/rust-sqlite-webui
version: '3'
services:
sqlite-webui:
image: wangyucode/rust-sqlite-webui
ports:
- "3000:3000"
volumes:
- sqlite.db:/app/db/sqlite.db
environment:
- API_KEY=your_secret_key
DB files: it will list the SQLite database files in the /app/db/ directory. so just mount the dbs to /app/db/ directory.
API_KEY: The authentication key for accessing the WebUI.
your-super-secure-keyContent type
Image
Digest
sha256:16417ae97…
Size
8.6 MB
Last updated
3 months ago
docker pull wangyucode/rust-sqlite-webui