diff options
author | zberwaldt <17715430+zberwaldt@users.noreply.github.com> | 2024-03-15 22:03:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-15 22:03:11 -0400 |
commit | 6f8cfbd6cc3d5adbda38e74013c68e3d4745766d (patch) | |
tree | b3f045cd06d6622e23441b442e8f3861050ed444 /.gitignore | |
parent | fac21fa0a72d4a7f1a01ccd44e3acf9c90fd95bd (diff) | |
parent | fd1332a3df191577e91c6d846a8b5db1747099fd (diff) |
Merge pull request #1 from zberwaldt/staging
Staging to Prod
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8a5cdb1 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,49 @@ | |||
1 | # If you prefer the allow list template instead of the deny list, see community template: | ||
2 | # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore | ||
3 | # | ||
4 | # Binaries for programs and plugins | ||
5 | *.exe | ||
6 | *.exe~ | ||
7 | *.dll | ||
8 | *.so | ||
9 | *.dylib | ||
10 | |||
11 | # Test binary, built with `go test -c` | ||
12 | *.test | ||
13 | |||
14 | # Output of the go coverage tool, specifically when used with LiteIDE | ||
15 | *.out | ||
16 | |||
17 | # Dependency directories (remove the comment below to include it) | ||
18 | vendor/ | ||
19 | |||
20 | # Go workspace file | ||
21 | go.work | ||
22 | |||
23 | |||
24 | # Logs | ||
25 | logs | ||
26 | *.log | ||
27 | npm-debug.log* | ||
28 | yarn-debug.log* | ||
29 | yarn-error.log* | ||
30 | lerna-debug.log* | ||
31 | .pnpm-debug.log* | ||
32 | |||
33 | # Dependency directories | ||
34 | node_modules/ | ||
35 | |||
36 | # TypeScript cache | ||
37 | *.tsbuildinfo | ||
38 | |||
39 | # Optional REPL history | ||
40 | .node_repl_history | ||
41 | |||
42 | # dotenv environment variable files | ||
43 | .env | ||
44 | .env.development.local | ||
45 | .env.test.local | ||
46 | .env.production.local | ||
47 | .env.local | ||
48 | |||
49 | *.sqlite3 | ||