Initial commit - realms platform
This commit is contained in:
parent
c590ab6d18
commit
c717c3751c
234 changed files with 74103 additions and 15231 deletions
146
.gitignore
vendored
Normal file
146
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
# =============================================================================
|
||||
# realms.india - Git Ignore Configuration
|
||||
# =============================================================================
|
||||
|
||||
# Environment Variables (CRITICAL - Contains Secrets!)
|
||||
# ======================================================
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
*.env
|
||||
!.env.example
|
||||
|
||||
# Docker
|
||||
# ======================================================
|
||||
docker-compose.override.yml
|
||||
.docker/
|
||||
|
||||
# Database
|
||||
# ======================================================
|
||||
*.sql.backup
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
postgres_data/
|
||||
redis_data/
|
||||
|
||||
# Logs
|
||||
# ======================================================
|
||||
*.log
|
||||
logs/
|
||||
ome_logs/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# Build Artifacts
|
||||
# ======================================================
|
||||
build/
|
||||
dist/
|
||||
out/
|
||||
.output/
|
||||
*.o
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
*.exe
|
||||
CMakeCache.txt
|
||||
CMakeFiles/
|
||||
cmake_install.cmake
|
||||
Makefile
|
||||
*.cmake
|
||||
!CMakeLists.txt
|
||||
|
||||
# Dependencies
|
||||
# ======================================================
|
||||
node_modules/
|
||||
.pnp
|
||||
.pnp.js
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
pnpm-lock.yaml
|
||||
bun.lockb
|
||||
bun.lock
|
||||
_deps/
|
||||
conan_install/
|
||||
|
||||
# IDE & Editors
|
||||
# ======================================================
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.DS_Store
|
||||
*.sublime-workspace
|
||||
*.sublime-project
|
||||
.project
|
||||
.classpath
|
||||
.settings/
|
||||
|
||||
# Frontend
|
||||
# ======================================================
|
||||
.svelte-kit/
|
||||
.vercel/
|
||||
.netlify/
|
||||
.cache/
|
||||
.tmp/
|
||||
.temp/
|
||||
|
||||
# Testing
|
||||
# ======================================================
|
||||
coverage/
|
||||
.nyc_output/
|
||||
*.lcov
|
||||
|
||||
# OS
|
||||
# ======================================================
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
|
||||
# Uploads & User Content
|
||||
# ======================================================
|
||||
uploads/
|
||||
avatars/
|
||||
!uploads/.gitkeep
|
||||
|
||||
# Security & Credentials
|
||||
# ======================================================
|
||||
*.pem
|
||||
*.key
|
||||
*.cert
|
||||
*.crt
|
||||
*.p12
|
||||
*.pfx
|
||||
credentials.json
|
||||
secrets.json
|
||||
.pgp/
|
||||
.gnupg/
|
||||
backend/config.json
|
||||
!backend/config.json.example
|
||||
|
||||
# Temporary Files
|
||||
# ======================================================
|
||||
tmp/
|
||||
temp/
|
||||
*.tmp
|
||||
*.bak
|
||||
*.backup
|
||||
*~.nib
|
||||
*.swp
|
||||
*.save
|
||||
|
||||
# GPG/PGP
|
||||
# ======================================================
|
||||
/tmp/pgp_verify/
|
||||
*.asc
|
||||
*.sig
|
||||
!*.asc.example
|
||||
|
||||
# Claude Code
|
||||
# ======================================================
|
||||
.claude/
|
||||
Loading…
Add table
Add a link
Reference in a new issue