A structured procedural language w/ a Lisp runtime / Rust ATProto bridge, to build a working TUI Bsky client
1# =========================
2# General
3# =========================
4.DS_Store
5Thumbs.db
6*.swp
7*.swo
8*~
9*.log
10
11# =========================
12# Editor / IDE
13# =========================
14.vscode/
15.idea/
16*.code-workspace
17
18# =========================
19# Lisp / SBCL
20# =========================
21*.fasl
22*.fas
23*.lx64fsl
24*.x86f
25*.lib
26*.cfasl
27*.ufasl
28*.lbin
29
30# SBCL cache / build leftovers
31.sbclrc
32.cache/
33.local/
34
35# =========================
36# Rust
37# =========================
38bridgetarget/
39target/
40Cargo.lock
41
42# (optional: keep Cargo.lock if you later want reproducible builds)
43# !Cargo.lock
44
45# =========================
46# Python (if used later)
47# =========================
48__pycache__/
49*.pyc
50*.pyo
51*.pyd
52.env
53.venv/
54
55# =========================
56# Build / temp
57# =========================
58build/
59dist/
60tmp/
61temp/
62
63# =========================
64# Secrets / local config
65# =========================
66.env
67.env.*
68secrets/
69*.key
70*.pem
71
72# =========================
73# Runtime artifacts
74# =========================
75*.pid
76*.sock
77
78# =========================
79# Logs from your system
80# =========================
81logs/
82*.out
83
84# =========================
85# Node (future UI / PWA)
86# =========================
87node_modules/
88package-lock.json
89yarn.lock