Skip to content

Commit 5a65ce6

Browse files
committed
chore: clean up repo and update .gitignore
1 parent 35cc931 commit 5a65ce6

1 file changed

Lines changed: 40 additions & 7 deletions

File tree

.gitignore

Lines changed: 40 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,50 @@
1+
############################################
12
# Terraform
3+
############################################
4+
.terraform/
25
*.tfstate
36
*.tfstate.*
4-
.terraform/
7+
terraform.tfstate
58
.terraform.lock.hcl
9+
crash.log
10+
override.tf*
11+
tfplan
12+
*.tfplan
613

7-
# Lambda zips
8-
infra/wake.zip
9-
infra/sleep.zip
14+
############################################
15+
# Lambda build artifacts (zips)
16+
############################################
17+
infra/*.zip
1018

11-
# Node
12-
node_modules/
13-
npm-debug.log
19+
############################################
20+
# Node.js (app/)
21+
############################################
22+
app/node_modules/
23+
npm-debug.log*
24+
yarn-error.log*
1425

26+
############################################
1527
# Python
28+
############################################
1629
__pycache__/
1730
*.pyc
31+
*.pyo
32+
*.pyd
33+
34+
############################################
35+
# Build / dist artifacts
36+
############################################
37+
dist/
38+
build/
39+
infra/out.json
40+
infra/resp.json
41+
42+
############################################
43+
# OS & editor junk
44+
############################################
45+
.DS_Store
46+
Thumbs.db
47+
.env
48+
*.swp
49+
*.bak
50+
*.tmp

0 commit comments

Comments
 (0)