-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
118 lines (98 loc) · 1.71 KB
/
.gitignore
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# See http://help.github.com/ignore-files/ for more about ignoring files.
# app fonts per @fontsource-derived conventions
apps/**/public/fonts/**/*.css
!apps/**/public/fonts/**/app.css
apps/**/public/fonts/**/files
# app i18n files for front-end ui's per i18next-derived conventions
apps/**/public/locales/**/*.json
!apps/**/public/locales/**/app-*.json
!apps/**/public/locales/**/translation.json
# tbd how to handle these (locate on s3 with local cache?)
media/*
!media/prototyping/
media/prototyping/*
!media/prototyping/images/
media/prototyping/images/*
!media/prototyping/images/avatars/
# dependencies
node_modules
/.pnp
.pnp.js
# environment
.env
.env.*
!.env.sample
# secrets
*.pem
*.key
*.csr
# nx cloud credentials
/nx-cloud.env
# framework
.astro
.next
/.next/
/out/
# compiled output
bin
dist
tmp
/out-tsc
/build
# coverage and related tools such as instanbul
/coverage
.nyc_output
lib-cov
*.lcov
# dev workflow such as output of rollup-plugin-visualizer
stats.html
# workflow
wip
notes
# diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# runtime data
pids
*.pid
*.seed
*.pid.lock
# aws-cdk output
.cdk.staging
cdk.out
# aws-cdk app
apps/**/infra/**/*.{js,mjs,cjs}
!apps/**/infra/jest.*.js
apps/**/infra/**/*.d.ts
node_modules
# ide's + editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# vscode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
# deploy + database
.serverless/
.fusebox/
.dynamodb/
.elasticbeanstalk
.ebextensions
# misc
.npm
/.sass-cache
.eslintcache
/connect.lock
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings
.yarn-integrity
*.tsbuildinfo