-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.gitignore
More file actions
45 lines (36 loc) · 715 Bytes
/
Copy path.gitignore
File metadata and controls
45 lines (36 loc) · 715 Bytes
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
# reference repo we cloned for porting — not part of this project
aula-python-reference/
# deps
node_modules/
.pnpm-store/
# build output
dist/
build/
*.tsbuildinfo
# tests / coverage
coverage/
# CLI binary build output
apps/cli/bin/
# env + secrets
.env
.env.*
!.env.example
# token store + local state
.aula/
tokens.json
*.tokens.json
# agent working notes + local worktrees
.aula-mcp-plan.md
.claude-scratch/
.claude/
# editor + os
.DS_Store
.vscode/
!.vscode/extensions.json
.idea/
*.log
# AES keys for the file-backed token store. We never want one in git;
# `aula tokens export` writes one to its output dir, which might be the
# repo working tree if the user picks a dumb path.
*.key
aula-bundle/