Skip to content

Commit d4989a5

Browse files
committed
fix: correcting the gitignore
1 parent b00b379 commit d4989a5

File tree

21 files changed

+796
-234
lines changed

21 files changed

+796
-234
lines changed

.gitignore

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,6 @@ out/
1010
.direnv/
1111
result
1212
bin_canary
13-
# Only ignore the canary binary at root, not the cmd/canary directory
14-
/canary
15-
!/cmd/canary/
16-
17-
# build folders
18-
bin/
19-
ui/public/
20-
ui/build/
21-
ui/node_modules/
22-
**/node_modules/
23-
24-
# Removing Vendor
25-
vendor/
26-
27-
.vscode/
2813

2914
# Binaries for programs and plugins
3015
*.exe
@@ -46,7 +31,6 @@ vendor/
4631
# ignore mac files
4732
.DS_Store
4833

49-
.claude/
5034
.canary/
5135
.codex/
5236
.windsurf/

bin/canary

14.9 MB
Binary file not shown.

bin/canary_debug

3.33 MB
Binary file not shown.

bin/canary_test

3.3 MB
Binary file not shown.

bin/canary_test_build

3.75 MB
Binary file not shown.

canary

13.9 MB
Binary file not shown.

canary.go

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package canary
2+
3+
const CommentPrefix = "<!--"
4+
const CommentSuffix = "-->"
5+
6+
const CanaryKey = "CANARY"
7+
8+
const CanaryStart = "START"
9+
const CanaryEnd = "END"
10+
11+
type Canary struct {
12+
Key string
13+
Start string
14+
End string
15+
}

0 commit comments

Comments
 (0)