register, login, create and manage sites and pages
This commit is contained in:
63
.gitignore
vendored
Normal file
63
.gitignore
vendored
Normal 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
|
||||
Reference in New Issue
Block a user