register, login, create and manage sites and pages

This commit is contained in:
Krrish Ghimire
2026-06-30 11:13:55 +05:45
commit 65f38d68c5
110 changed files with 28049 additions and 0 deletions

63
.gitignore vendored Normal file
View File

@@ -0,0 +1,63 @@
# Java / Gradle (Backend)
backend/.gradle/
backend/build/
backend/bin/
backend/out/
# Node / Angular (Frontend)
frontend/node_modules/
frontend/dist/
frontend/tmp/
frontend/out-tsc/
frontend/.angular/cache/
frontend/coverage/
# Environment files
.env
.env.*
backend/src/main/resources/application-local.yml
backend/src/main/resources/application-dev.yml
# IDE
.idea/
.vscode/
*.iml
*.ipr
*.iws
.project
.classpath
.settings/
*.sublime-workspace
# OS
.DS_Store
Thumbs.db
*.swp
*.swo
*~
# Logs
*.log
# Docker
docker-data/
# Secrets / keys / certificates
backend/config/
*.key
*.pem
*.p8
*.p12
*.pfx
*.crt
*.cert
*.jks
*.keystore
*.secret
# Misc
*.jar
*.war
*.ear
*.tar.gz
*.zip