-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.gitignore
More file actions
151 lines (141 loc) · 4.73 KB
/
Copy path.gitignore
File metadata and controls
151 lines (141 loc) · 4.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# NOTE use the `web/` gitignore for web-specific ignores
.ipython_history
.DS_Store
.venv
.pytest_cache
.ruff_cache
__pycache__
.mypy_cache
env/*local.*
env/host.sh
mise.*local.toml
mise.*local.lock
# don't commit any ssh key components
*.pem
*.pub
# TODO this should really be redirected to a tmp/ directory
.coverage
# for logs and other system-generated files that can be safely wiped
/tmp/*
# for scripts, dumps, etc that are strictly for personal use
/playground/*
/public
# plugin installation folder
.terraform/
# this contains secrets!
terraform.tfstate*
.terraform.tfstate*
# keep `.terraform.lock.hcl`, it's like a package manager lock file
# AI agent local state
.claude/settings.local.json
.claude/tmp/
.cursor/screenshots/
.antigravitycli/
lefthook-local.yml
# START AI INSTRUCTION IGNORES
/.claude/commands/dev-in-browser.md
/.claude/commands/fastapi_stripe.md
/.claude/commands/fix-tests.md
/.claude/commands/implement-fastapi-routes.md
/.claude/commands/plan-only.md
/.claude/commands/python-command.md
/.claude/commands/react-router-client-loader.md
/.claude/commands/refactor-on-instructions.md
/.claude/commands/secrets.md
/.claude/commands/standalone-python-scripts.md
/.claude/commands/stripe-backend.md
/.claude/commands/typescript-docstring.md
/.claude/rules/alembic-migrations.md
/.claude/rules/fastapi.md
/.claude/rules/general.md
/.claude/rules/justfiles.md
/.claude/rules/pytest-integration-tests.md
/.claude/rules/pytest-tests.md
/.claude/rules/python-app.md
/.claude/rules/python-route-tests.md
/.claude/rules/python.md
/.claude/rules/react-router.md
/.claude/rules/react.md
/.claude/rules/shell.md
/.claude/rules/typescript.md
/.cursor/commands/dev-in-browser.md
/.cursor/commands/fastapi_stripe.md
/.cursor/commands/fix-tests.md
/.cursor/commands/implement-fastapi-routes.md
/.cursor/commands/plan-only.md
/.cursor/commands/python-command.md
/.cursor/commands/react-router-client-loader.md
/.cursor/commands/refactor-on-instructions.md
/.cursor/commands/secrets.md
/.cursor/commands/standalone-python-scripts.md
/.cursor/commands/stripe-backend.md
/.cursor/commands/typescript-docstring.md
/.cursor/rules/alembic-migrations.mdc
/.cursor/rules/fastapi.mdc
/.cursor/rules/general.mdc
/.cursor/rules/justfiles.mdc
/.cursor/rules/pytest-integration-tests.mdc
/.cursor/rules/pytest-tests.mdc
/.cursor/rules/python-app.mdc
/.cursor/rules/python-route-tests.mdc
/.cursor/rules/python.mdc
/.cursor/rules/react-router.mdc
/.cursor/rules/react.mdc
/.cursor/rules/shell.mdc
/.cursor/rules/typescript.mdc
/.gemini/commands/dev-in-browser.toml
/.gemini/commands/fastapi_stripe.toml
/.gemini/commands/fix-tests.toml
/.gemini/commands/implement-fastapi-routes.toml
/.gemini/commands/plan-only.toml
/.gemini/commands/python-command.toml
/.gemini/commands/react-router-client-loader.toml
/.gemini/commands/refactor-on-instructions.toml
/.gemini/commands/secrets.toml
/.gemini/commands/standalone-python-scripts.toml
/.gemini/commands/stripe-backend.toml
/.gemini/commands/typescript-docstring.toml
/.github/copilot-instructions.md
/.github/instructions/alembic-migrations.instructions.md
/.github/instructions/fastapi.instructions.md
/.github/instructions/justfiles.instructions.md
/.github/instructions/pytest-integration-tests.instructions.md
/.github/instructions/pytest-tests.instructions.md
/.github/instructions/python-app.instructions.md
/.github/instructions/python-route-tests.instructions.md
/.github/instructions/python.instructions.md
/.github/instructions/react-router.instructions.md
/.github/instructions/react.instructions.md
/.github/instructions/shell.instructions.md
/.github/instructions/typescript.instructions.md
/.github/prompts/dev-in-browser.prompt.md
/.github/prompts/fastapi_stripe.prompt.md
/.github/prompts/fix-tests.prompt.md
/.github/prompts/implement-fastapi-routes.prompt.md
/.github/prompts/plan-only.prompt.md
/.github/prompts/python-command.prompt.md
/.github/prompts/react-router-client-loader.prompt.md
/.github/prompts/refactor-on-instructions.prompt.md
/.github/prompts/secrets.prompt.md
/.github/prompts/standalone-python-scripts.prompt.md
/.github/prompts/stripe-backend.prompt.md
/.github/prompts/typescript-docstring.prompt.md
/.opencode/commands/dev-in-browser.md
/.opencode/commands/fastapi_stripe.md
/.opencode/commands/fix-tests.md
/.opencode/commands/implement-fastapi-routes.md
/.opencode/commands/plan-only.md
/.opencode/commands/python-command.md
/.opencode/commands/react-router-client-loader.md
/.opencode/commands/refactor-on-instructions.md
/.opencode/commands/secrets.md
/.opencode/commands/standalone-python-scripts.md
/.opencode/commands/stripe-backend.md
/.opencode/commands/typescript-docstring.md
/AGENTS.md
/app/routes/AGENTS.md
/tests/AGENTS.md
/tests/integration/AGENTS.md
/tests/routes/AGENTS.md
/web/app/routes/AGENTS.md
# END AI INSTRUCTION IGNORES