-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
33 lines (28 loc) · 840 Bytes
/
Copy path.gitignore
File metadata and controls
33 lines (28 loc) · 840 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
# Secrets — never commit a filled-in env.
.env
.env.*
!.env.example
.dev.vars
# wrangler.toml IS checked in — it ships with placeholder D1/R2 IDs
# so the Cloudflare "Deploy to Cloudflare" button works out of the
# box (it detects all-zero UUIDs and prompts to create real
# resources on the user's account).
#
# Maintainers + CLI installers keep their real IDs in
# wrangler.live.toml (gitignored). The CLI installer (setup.sh)
# writes the live overlay there after provisioning.
wrangler.live.toml
# Setup script state machine. Generated locally; delete to start over.
.setup-state
# Local-only reference scratch files (e.g. soro-example.js used while
# building the embed widget; not part of the project).
soro-example.js
# Tool caches.
node_modules/
.wrangler/
__pycache__/
# Editor / OS noise.
.DS_Store
*.log
.idea/
.vscode/