mirror of
https://github.com/p-stream/backend.git
synced 2026-03-11 09:45:34 +00:00
Some checks failed
Build and Publish Docker image to GHCR / build-and-push (push) Has been cancelled
84 lines
876 B
Text
84 lines
876 B
Text
# VCS
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
.github/
|
|
|
|
# Dependencies installed on host
|
|
node_modules/
|
|
.npm/
|
|
.pnpm-store/
|
|
.yarn/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Build output / caches
|
|
.output/
|
|
dist/
|
|
build/
|
|
coverage/
|
|
.nyc_output/
|
|
.cache/
|
|
.parcel-cache/
|
|
.eslintcache
|
|
.stylelintcache
|
|
*.tsbuildinfo
|
|
tmp/
|
|
temp/
|
|
|
|
# Tests / local-only files
|
|
test/
|
|
tests/
|
|
__tests__/
|
|
__mocks__/
|
|
|
|
# Local env / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.p12
|
|
*.jks
|
|
|
|
# Local DB / runtime artifacts
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# Logs / pid files
|
|
logs/
|
|
*.log
|
|
pids/
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Editor / OS
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker / deployment config
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose.yml
|
|
nixpacks.toml
|
|
railpack.json
|
|
|
|
# Documentation
|
|
README.md
|
|
LICENSE
|
|
|
|
# Dev-only source folders
|
|
examples/
|
|
|
|
# Dev tooling config
|
|
.eslintrc.json
|
|
.prettierrc
|