QuickDID is a high-performance AT Protocol identity resolution service written in Rust. It provides handle-to-DID resolution with Redis-backed caching and queue processing.
1# Git
2.git
3.gitignore
4
5# Documentation
6*.md
7docs/
8LICENSE
9
10# Development files
11.vscode/
12.env
13.env.local
14*.log
15
16# Build artifacts
17target/
18Dockerfile
19.dockerignore
20
21# Test files
22tests/
23benches/
24
25# Scripts (except the ones we need)
26*.sh
27
28# SQLite databases
29*.db
30*.db-*
31
32# OS files
33.DS_Store
34Thumbs.db
35
36# Keep the www directory for static files
37!www/