-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy path.gitignore
More file actions
63 lines (49 loc) · 1005 Bytes
/
.gitignore
File metadata and controls
63 lines (49 loc) · 1005 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# environment
.DS_Store
.vagrant
# redis
dump.rdb
# .yarn - https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
.yarn/*
# !.yarn/cache - Uncomment this if we want to commit the cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
# Ignore the @devvit packages from being cached - they change too often, and we have them on disk anyways when we build
.yarn/cache/@devvit-*.zip
# pki keys
client.crt
client.key
# editors
.idea
.vscode/
/.zed/
.cursor/plans/
# dependencies
node_modules/
.tool-versions
.pj
.turbo/
.eslintcache
# build artifacts
build/
dist/
client-manifest.json
# drone artifacts
.npmrc
.terraform/
# Go workspace
go.work.sum
vendor/
.gocache/
vitest.config.js.timestamp-*.mjs
yarn.lock # Don't commit this - we'll generate it ourselves.
__e2e__/playwright/tmp/
__e2e__/playwright/test-results/
__e2e__/playwright/data/user/localSessionCookies.json
# Ignore all build artifacts
tsconfig.tsbuildinfo
# local worktrees
.worktrees/