1 parent b29eafa commit 2eacbf3Copy full SHA for 2eacbf3
1 file changed
README.md
@@ -0,0 +1,23 @@
1
+# Private Search
2
+
3
+A self-hostable private search.
4
5
+No tracking. FAST AF (I think). Run it yourself.
6
7
8
+Search requests and caching are handled by the backend library:
9
10
+- **https://github.com/legitcamper/private-search-engines**
11
12
+## Quick Start (Docker)
13
14
+You can deploy your own instance using Docker with a single command:
15
16
+```bash
17
+docker run -d \
18
+ -p 8080:8080 \
19
+ -v private-search:/app/data \
20
+ ghcr.io/legitcamper/private-search
21
+```
22
23
+http://localhost:8080
0 commit comments