-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
34 lines (30 loc) · 1.02 KB
/
Copy path.gitignore
File metadata and controls
34 lines (30 loc) · 1.02 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
# Secrets — never commit
.env
.env.local
.dev.vars
worker/.dev.vars
*.pem
*.key
# API response cache (local dev only)
.cache/
# Data is no longer stored in git. It used to be — the ingest store was
# committed so each scheduled run could resume from the last watermark — but
# that made every run a push into an org that broadcasts push events, which is
# what kept the schedule parked. State now lives in the Actions cache between
# runs, and the Pages deploy reads the built JSON off disk rather than out of
# the repo, so nothing here needs a commit.
#
# It also has to be this way before private repos are ingested: the deploy
# publishes what it is given, and a tracked data/ would put private records
# into both the repo history and a public site.
data/
# Generated by worker/seed.js from the ingest store — 17 MB of the same records
# data/ already excludes, and every PR title in the org along with them.
worker/seed.sql
worker/backfill.sql
worker/labels.sql
worker/traffic.sql
worker/.wrangler/
node_modules/
*.log
.DS_Store