A community based topic aggregation platform built on atproto
1# Binaries
2*.exe
3*.dll
4*.so
5*.dylib
6/main
7/server
8
9# Test binary, built with go test -c
10*.test
11
12# Output of the go coverage tool
13*.out
14
15# Go workspace file
16go.work
17
18# Environment files
19.env
20.env.local
21.env.development
22.env.production
23.env.prod
24.env.test
25
26# IDE
27.idea/
28.vscode/
29*.swp
30*.swo
31
32# OS
33.DS_Store
34Thumbs.db
35
36# Application data
37/data/
38/local_dev_data/
39/test_db_data/
40
41# Logs
42*.log
43
44# Temporary files
45*.tmp
46*.temp
47
48# Build artifacts
49/validate-lexicon
50/bin/
51
52# Go build cache
53.cache/