Skip to content

Commit dbb20f3

Browse files
committed
feat: refactor project structure and remove helm charts
- Update .gitignore with improved patterns - Remove helm charts directory and related Kubernetes manifests - Update auth and post submodules with latest changes - Clean up project structure for better maintainability
1 parent fdb4f2d commit dbb20f3

21 files changed

+75
-1205
lines changed

.gitignore

Lines changed: 73 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,73 @@
1-
node_modules
2-
!.vscode
3-
yarn.lock
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
yarn.lock
7+
package-lock.json
8+
9+
# Environment variables
10+
.env
11+
.env.local
12+
.env.development
13+
.env.test
14+
.env.production
15+
16+
# Build outputs
17+
dist/
18+
build/
19+
20+
# Logs
21+
logs/
22+
*.log
23+
24+
# Runtime data
25+
pids/
26+
*.pid
27+
*.seed
28+
*.pid.lock
29+
30+
# Coverage directory used by tools like istanbul
31+
coverage/
32+
*.lcov
33+
34+
# nyc test coverage
35+
.nyc_output/
36+
37+
# IDE and editors
38+
.vscode/
39+
!.vscode/settings.json
40+
!.vscode/tasks.json
41+
!.vscode/launch.json
42+
!.vscode/extensions.json
43+
.idea/
44+
*.swp
45+
*.swo
46+
*~
47+
48+
# OS generated files
49+
.DS_Store
50+
.DS_Store?
51+
._*
52+
.Spotlight-V100
53+
.Trashes
54+
ehthumbs.db
55+
Thumbs.db
56+
57+
# Docker
58+
.dockerignore
59+
60+
# Temporary folders
61+
tmp/
62+
temp/
63+
64+
# Helm charts (if generated)
65+
helm/
66+
67+
# Database
68+
*.db
69+
*.sqlite
70+
*.sqlite3
71+
72+
# Redis dump
73+
dump.rdb

helm/README.md

Lines changed: 0 additions & 258 deletions
This file was deleted.

helm/microservices/Chart.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)