Skip to content

Commit 2ab3c56

Browse files
Merge pull request #39 V6: Create documentation website
2 parents 5d208f6 + a7caaf4 commit 2ab3c56

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+10463
-1178
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,26 @@ build/
119119
.github/instructions/nx.instructions.md
120120
vite.config.*.timestamp*
121121
vitest.config.*.timestamp*
122+
123+
124+
125+
# generated content
126+
.source
127+
128+
# test & build
129+
/coverage
130+
/.next/
131+
/out/
132+
/build
133+
*.tsbuildinfo
134+
135+
# misc
136+
.DS_Store
137+
*.pem
138+
/.pnp
139+
.pnp.js
140+
141+
# others
142+
.env*.local
143+
.vercel
144+
next-env.d.ts
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
16+
# next.js
17+
/.next/
18+
/out/
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# env files (can opt-in for committing if needed)
34+
.env*
35+
36+
# vercel
37+
.vercel
38+
39+
# typescript
40+
*.tsbuildinfo
41+
next-env.d.ts

apps/sequelize-guard-docs/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org/

0 commit comments

Comments
 (0)