Skip to content

Commit 9729d4d

Browse files
committed
Update .gitignore
1 parent 4c699d1 commit 9729d4d

File tree

1 file changed

+68
-26
lines changed

1 file changed

+68
-26
lines changed

.gitignore

Lines changed: 68 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,94 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

33
# dotnet
4+
.env
45
dist/
56
App_Data/
67
wwwroot/
8+
.vscode/
9+
.idea/
710
*.user
811
*.tsbuildinfo
912
#sqlite
1013
.vs/
14+
bin/
15+
obj/
16+
*.db
17+
*.db-shm
18+
*.db-wal
19+
*.db-journal
1120
*.sqlite
1221
*.sqlite
1322
*.sqlite-shm
1423
*.sqlite-wal
24+
Configure.secrets.cs
25+
appsettings.Production.*
1526

1627
# dependencies
1728
node_modules/
1829
.pnp
1930
.pnp.js
2031

21-
# testing
22-
/coverage
32+
# dotenv environment variable files
33+
.env
34+
.env.development.local
35+
.env.test.local
36+
.env.production.local
37+
.env.local
2338

24-
# next.js
25-
.next/
26-
out/
39+
# Next.js build output
40+
.next
41+
out
2742

28-
# production
29-
build/
43+
# Nuxt.js build / generate output
44+
.nuxt
45+
dist
3046

31-
# misc
32-
.DS_Store
33-
*.pem
47+
# Build results
48+
[Dd]ebug/
49+
[Dd]ebugPublic/
50+
[Rr]elease/
51+
[Rr]eleases/
52+
x64/
53+
x86/
54+
[Ww][Ii][Nn]32/
55+
[Aa][Rr][Mm]/
56+
[Aa][Rr][Mm]64/
57+
bld/
58+
[Bb]in/
59+
[Oo]bj/
60+
[Ll]og/
61+
[Ll]ogs/
3462

35-
# debug
36-
npm-debug.log*
37-
yarn-debug.log*
38-
yarn-error.log*
63+
# .NET Core
64+
project.lock.json
65+
project.fragment.lock.json
66+
artifacts/
3967

40-
# local env files
41-
.env.local
42-
.env.development.local
43-
.env.test.local
44-
.env.production.local
68+
# ASP.NET Scaffolding
69+
ScaffoldingReadMe.txt
4570

46-
# vercel
47-
.vercel
48-
.idea
49-
obj/
50-
bin/
51-
MyApp/mise.toml
52-
mise.toml
71+
# NuGet Packages
72+
*.nupkg
73+
# NuGet Symbol Packages
74+
*.snupkg
75+
76+
# dotenv environment variables file
77+
.env
78+
79+
# Others
80+
~$*
81+
*~
82+
CodeCoverage/
83+
84+
# MSBuild Binary and Structured Log
85+
*.binlog
86+
87+
# MSTest test Results
88+
[Tt]est[Rr]esult*/
89+
[Bb]uild[Ll]og.*
90+
91+
# NUnit
92+
*.VisualState.xml
93+
TestResult.xml
94+
nunit-*.xml

0 commit comments

Comments
 (0)