- Introduced Dockerfile for building and running the application in a containerized environment. - Added .dockerignore to exclude unnecessary files from the Docker context. - Updated README.md with detailed Docker installation instructions and Node.js version management using nvm. - Refactored environment variable handling in src/index.ts and src/config/hass.config.ts for improved configuration management. - Enhanced TypeScript configuration to include JSON module resolution and updated exclusion patterns. - Updated .gitignore to include additional files for better environment management.
68 lines
717 B
Plaintext
68 lines
717 B
Plaintext
# Dependencies
|
|
node_modules
|
|
dist
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
.cursorrules
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
.env.test
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Docker
|
|
docker-compose.yml
|
|
docker-compose.yaml
|
|
docker-compose.override.yml
|
|
docker-compose.override.yaml
|
|
|
|
# IDEs and editors
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Home Assistant
|
|
.storage
|
|
.cloud
|
|
.google.token
|
|
home-assistant.log*
|
|
home-assistant_v2.db
|
|
home-assistant_v2.db-*
|
|
.
|
|
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
bun.lockb
|