Skip to content

Commit acdbe7f

Browse files
committed
Intial App MVP
1 parent 3bf74b0 commit acdbe7f

24 files changed

+2635
-3
lines changed

.gitignore

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
.pnpm-debug.log*
9+
10+
# Diagnostic reports
11+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12+
13+
# Runtime data
14+
pids
15+
*.pid
16+
*.seed
17+
*.pid.lock
18+
*.tmp
19+
.claude
20+
21+
# Dependency directories
22+
node_modules/
23+
bower_components/
24+
jspm_packages/
25+
web_modules/
26+
27+
# Build output
28+
dist/
29+
build/
30+
lib/
31+
out/
32+
temp/
33+
tmp/
34+
bundle/
35+
webpack-bundle/
36+
.nuxt/
37+
.next/
38+
out/
39+
.cache/
40+
.parcel-cache
41+
.vuepress/dist
42+
.docusaurus
43+
44+
# Coverage
45+
coverage/
46+
.nyc_output/
47+
*.lcov
48+
coverage-final.json
49+
50+
# TypeScript
51+
*.tsbuildinfo
52+
*.d.ts.map
53+
54+
# ESLint / Stylelint
55+
.eslintcache
56+
.stylelintcache
57+
58+
# Microbundle / Rollup / Esbuild
59+
.rpt2_cache/
60+
.rts2_cache_cjs/
61+
.rts2_cache_es/
62+
.rts2_cache_umd/
63+
64+
# Optional npm/yarn/pnpm files
65+
.npm
66+
.yarn/cache
67+
.yarn/unplugged
68+
.yarn/build-state.yml
69+
.yarn/install-state.gz
70+
.pnp.*
71+
72+
# Lock and temp files
73+
*.orig
74+
*.bak
75+
*.tmp.*
76+
.lock-wscript
77+
78+
# REPL / History
79+
.node_repl_history
80+
81+
# Editor settings
82+
.vscode/
83+
.idea/
84+
*.swp
85+
*.swo
86+
*~
87+
88+
# OS-generated files
89+
.DS_Store
90+
.AppleDouble
91+
.LSOverride
92+
.Spotlight-V100
93+
.Trashes
94+
ehthumbs.db
95+
Thumbs.db
96+
Desktop.ini
97+
98+
# Test / Debug artifacts
99+
test/fixtures/
100+
benchmark/
101+
jest.config.js
102+
*.stackdump
103+
104+
# Firebase / Serverless / Turborepo / Vercel
105+
.firebase/
106+
.serverless/
107+
.turbo/
108+
.vercel
109+
110+
# Docs / API
111+
docs/api/
112+
113+
# Local config
114+
config/local.json
115+
config/local.js
116+
config/local.ts
117+
118+
# Git hooks (if using Husky)
119+
.husky/_
120+
121+
# Yarn integrity
122+
.yarn-integrity
123+
124+
# Output of `npm pack`
125+
*.tgz
126+
127+
# Playwright / Cypress
128+
playwright-report/
129+
test-results/
130+
cypress/videos/
131+
cypress/screenshots/
132+
133+
# Changelog drafts
134+
CHANGELOG.draft.md
135+
136+
# Ignore all env files except examples
137+
.env
138+
.env.*
139+
!.env.example
140+
!.env.sample

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 GLINCKER.O
3+
Copyright (c) 2024 TypeWeaver
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)