Secure storage and distribution of cryptographic keys in ATProto applications
1# Dependencies
2node_modules/
3
4# Other packages (only building server)
5packages/client/
6
7# Documentation
8docs/
9*.md
10!packages/server/README.md
11
12# Files inside server package
13packages/server/node_modules/
14packages/server/data/
15
16# Development files
17.git/
18.gitignore
19.dockerignore
20Dockerfile
21.vscode/
22.idea/
23
24# Environment files (should be provided at runtime)
25.env
26.env.*
27
28# Logs
29*.log
30npm-debug.log*
31
32# OS files
33.DS_Store
34Thumbs.db
35
36# Testing
37coverage/
38.nyc_output/
39
40# TypeScript
41*.tsbuildinfo
42
43# Misc
44*.swp
45*.swo
46*~