-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
51 lines (46 loc) · 1.62 KB
/
Copy path.gitignore
File metadata and controls
51 lines (46 loc) · 1.62 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
/tmp
config.yml
whitelist.yml
blacklist.yml
relay_metadata.json
# Test fixtures in tests/docker/configs/ must stay tracked even though
# they share names with the runtime data-dir files ignored above.
!tests/docker/configs/*.yml
grain.exe
/build
*/logs
debug.*
domain_pubkey_cache.json
# Local throwaway helper for Docker build+test of cgo packages (memory-leak
# audit work). Not part of the repo; ignored so the pre-commit hook's
# `git add .` can't sweep it in.
.ci-verify.sh
# Status monitoring data (auto-generated by GitHub Actions)
docs/status/status.json
docs/status/uptime.json
docs/status/history/
.claude
# Built tool binaries
tools/migrate-mongo/migrate-mongo
tools/migrate-mongo/migrate-mongo.exe
# Swag-generated OpenAPI artifacts. The directory itself is kept via
# .gitkeep so `make generate` / CI has somewhere to drop output; the
# spec is rebuilt from swag annotations on every build.
docs/openapi/*
!docs/openapi/.gitkeep
# swagger-ui-dist assets are downloaded at build time by the
# Dockerfile / release workflow. .gitkeep keeps the directory in tree
# so the //go:embed www/* directive resolves locally before the
# bundle step runs.
www/static/swagger/*
!www/static/swagger/.gitkeep
# Self-hosted webfonts. Same pattern as swagger above.
www/static/fonts/*
!www/static/fonts/.gitkeep
# nostr-mill UMD bundle. Downloaded by Dockerfile / release workflow.
www/static/mill/*
!www/static/mill/.gitkeep
# Compiled Tailwind CSS — generated from input.css by the Dockerfile /
# release workflow. Committing it risks embedding a stale build; the
# build always regenerates it from the current templates.
www/style/tailwind.min.css