Try cookiecutter

This commit is contained in:
2023-12-26 13:22:45 +01:00
parent 37a641887f
commit bdd99e9374
22 changed files with 54 additions and 48 deletions

View File

@@ -0,0 +1,35 @@
{
"name": "{{ cookiecutter.project_slug }} Dev",
"image": "thomasloven/hass-custom-devcontainer",
"postCreateCommand": "sudo -E container setup-dev && npm add",
"containerEnv": {
"DEVCONTAINER": "1"
},
"forwardPorts": [8123],
"mounts": [
"source=${localWorkspaceFolder},target=/config/www/workspace,type=bind",
"source=${localWorkspaceFolder}/test,target=/config/test,type=bind",
"source=${localWorkspaceFolder}/test/configuration.yaml,target=/config/configuration.yaml,type=bind",
"source=${localWorkspaceFolder}/custom_components,target=/config/custom_components,type=bind"
],
"runArgs": ["--env-file", "${localWorkspaceFolder}/test/.env"],
"extensions": [
"github.vscode-pull-request-github",
"esbenp.prettier-vscode",
"spmeesseman.vscode-taskexplorer"
],
"settings": {
"files.eol": "\n",
"editor.tabSize": 2,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.trimTrailingWhitespace": true
}
}

View File

@@ -0,0 +1,2 @@
{{ cookiecutter.project_file }}.js binary
package-lock.json.binary

View File

@@ -0,0 +1,2 @@
node_modules/
custom_components/

View File

@@ -0,0 +1,32 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "npm: build",
"type": "npm",
"script": "build",
"problemMatcher": []
},
{
"label": "npm: watch",
"type": "npm",
"script": "watch",
"problemMatcher": [],
"presentation": {
"panel": "shared",
"group": "test"
}
},
{
"label": "Run hass",
"type": "shell",
"command": "sudo container launch",
"problemMatcher": [],
"presentation": {
"panel": "shared",
"group": "test"
}
}
]
}

View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2023 Thomas Lovén
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -0,0 +1,16 @@
# {{ cookiecutter.project_name }}
[![hacs_badge](https://img.shields.io/badge/HACS-Default-orange.svg)](https://github.com/custom-components/hacs)
<DESCRIPTION>.
For installation instructions [see this guide](https://github.com/thomasloven/hass-config/wiki/Lovelace-Plugins).
## Usage
### Options
---
<a href="https://www.buymeacoffee.com/uqD6KHCdJ" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/white_img.png" alt="Buy Me A Coffee" style="height: auto !important;width: auto !important;" ></a>

View File

@@ -0,0 +1,4 @@
{
"name": "{{ cookiecutter.project_name }}",
"render_readme": true
}

View File

@@ -0,0 +1,27 @@
{
"name": "{{ cookiecutter.project_name }}",
"private": true,
"version": "0.1.0",
"description": "",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch"
},
"author": "{{ cookiecutter.author }}",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.3.3"
},
"dependencies": {
"lit": "^3.1.0",
"tslib": "^2.6.2"
}
}

View File

@@ -0,0 +1,22 @@
import nodeResolve from "@rollup/plugin-node-resolve";
import json from "@rollup/plugin-json";
import typescript from "rollup-plugin-typescript2";
import { terser } from "rollup-plugin-terser";
import { getBabelOutputPlugin } from "@rollup/plugin-babel";
const dev = process.env.ROLLUP_WATCH;
export default {
input: "src/main.ts",
output: {
file: "{{ cookiecutter.project_file }}.js",
format: "es",
},
plugins: [
nodeResolve(),
json(),
typescript(),
getBabelOutputPlugin({ presets: ["@babel/preset-env"] }),
!dev && terser({ format: { comments: false } }),
],
};

View File

@@ -0,0 +1,4 @@
HASS_USERNAME=dev
HASS_PASSWORD=dev
LOVELACE_LOCAL_FILES={{ cookiecutter.project_file }}.js
LOVELACE_PLUGINS="thomasloven/lovelace-card-mod"

View File

@@ -0,0 +1,11 @@
default_config:
demo:
lovelace:
mode: storage
dashboards:
lovelace-yaml:
mode: yaml
title: yaml
filename: test/lovelace.yaml

View File

@@ -0,0 +1,17 @@
version: "3.0"
services:
test:
image: thomasloven/hass-custom-devcontainer
environment:
- HASS_USERNAME
- HASS_PASSWORD
- LOVELACE_LOCAL_FILES
- LOVELACE_PLUGINS
volumes:
- ./configuration.yaml:/config/configuration.yaml:ro
- .:/config/test:ro
- ..:/config/www/workspace
- ../custom_components,target=/config/custom_components
ports:
- 8125:8123

View File

@@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "es2017",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true
}
}