Skip to content

Commit bb83652

Browse files
committed
Initial commit of WickAuth application
1 parent 33e207e commit bb83652

Some content is hidden

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

44 files changed

+14916
-2301
lines changed

.gitignore

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

33
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.*
4+
node_modules/
5+
.pnp/
6+
.pnp.js
77
.yarn/*
88
!.yarn/patches
99
!.yarn/plugins
@@ -14,8 +14,8 @@
1414
/coverage
1515

1616
# next.js
17-
/.next/
18-
/out/
17+
.next/
18+
out/
1919

2020
# production
2121
/build
@@ -31,11 +31,45 @@ yarn-error.log*
3131
.pnpm-debug.log*
3232

3333
# env files (can opt-in for committing if needed)
34-
.env*
34+
.env*.local
35+
.env
3536

3637
# vercel
3738
.vercel
3839

3940
# typescript
4041
*.tsbuildinfo
4142
next-env.d.ts
43+
44+
# Electron build output
45+
dist/
46+
release/
47+
48+
# IDE and editor directories
49+
.idea/
50+
.vscode/
51+
*.swp
52+
*.swo
53+
54+
# Build process files
55+
.env.local
56+
.env.development.local
57+
.env.test.local
58+
.env.production.local
59+
60+
# Cache
61+
.eslintcache
62+
.cache/
63+
64+
# Windows
65+
Thumbs.db
66+
ehthumbs.db
67+
Desktop.ini
68+
$RECYCLE.BIN/
69+
70+
# macOS
71+
.AppleDouble
72+
.LSOverride
73+
._*
74+
.Spotlight-V100
75+
.Trashes

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Wick Studio
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)