mirror of
https://github.com/rajnandan1/kener.git
synced 2026-06-22 20:00:44 +00:00
9b99bec50b
- Implement multi-stage Dockerfile for building and running the Kener application with support for Alpine and Debian variants. - Establish development and production Docker Compose files for local testing and deployment. - Configure Redis service for caching and job scheduling. - Set up environment variables for application configuration, including secret keys and database connections. - Define health checks for Redis service to ensure reliability.
51 lines
555 B
Plaintext
51 lines
555 B
Plaintext
# Dependencies
|
|
node_modules
|
|
|
|
# Version control
|
|
.git
|
|
.github
|
|
|
|
# IDE and editor
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
|
|
# Build outputs (rebuilt inside Docker)
|
|
build
|
|
dist
|
|
.svelte-kit
|
|
.docs-excluded
|
|
|
|
# Environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Docker files (prevent recursive context)
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Documentation and meta
|
|
README.md
|
|
README.template.md
|
|
AGENTS.md
|
|
CHANGELOG.md
|
|
LICENSE
|
|
check-output.txt
|
|
|
|
# AI / tooling config
|
|
.claude
|
|
|
|
# Test artifacts
|
|
*.test.*
|
|
*.spec.* |