Enhance project structure and testing capabilities

- Updated .dockerignore to include additional logs and IDE files, improving Docker build efficiency.
- Added .eslintrc.json for TypeScript linting configuration, ensuring code quality and consistency.
- Refactored Dockerfile to streamline the build process and utilize a slimmer Node.js image.
- Introduced jest-resolver.cjs and jest.setup.js for improved Jest testing configuration and setup.
- Updated jest.config.js to support ESM and added new test patterns for better test organization.
- Enhanced TypeScript schemas to include new device types (media_player, fan, lock, vacuum, scene, script, camera) for comprehensive validation.
- Added unit tests for device schemas and Home Assistant connection, improving test coverage and reliability.
- Updated README.md with new testing instructions and device control examples, enhancing user guidance.
This commit is contained in:
jango-blockchained
2024-12-17 15:07:40 +01:00
parent 7610147a19
commit ada5ea4646
30 changed files with 2385 additions and 130 deletions

View File

@@ -1,6 +1,11 @@
import dotenv from 'dotenv';
// Load environment variables
dotenv.config();
export const HASS_CONFIG = {
BASE_URL: process.env.HASS_HOST || 'http://192.168.178.63:8123',
TOKEN: process.env.HASS_TOKEN,
SOCKET_URL: process.env.HASS_HOST || 'http://192.168.178.63:8123',
SOCKET_TOKEN: process.env.HASS_TOKEN,
BASE_URL: process.env.HASS_HOST || 'http://homeassistant.local:8123',
TOKEN: process.env.HASS_TOKEN || '',
SOCKET_URL: process.env.HASS_SOCKET_URL || '',
SOCKET_TOKEN: process.env.HASS_SOCKET_TOKEN || '',
};