Try cookiecutter
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
2
{{ cookiecutter.project_slug }}/.gitattributes
vendored
Normal file
2
{{ cookiecutter.project_slug }}/.gitattributes
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
{{ cookiecutter.project_file }}.js binary
|
||||
package-lock.json.binary
|
||||
2
{{ cookiecutter.project_slug }}/.gitignore
vendored
Normal file
2
{{ cookiecutter.project_slug }}/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
node_modules/
|
||||
custom_components/
|
||||
32
{{ cookiecutter.project_slug }}/.vscode/tasks.json
vendored
Normal file
32
{{ cookiecutter.project_slug }}/.vscode/tasks.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
21
{{ cookiecutter.project_slug }}/LICENSE.txt
Normal file
21
{{ cookiecutter.project_slug }}/LICENSE.txt
Normal 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.
|
||||
16
{{ cookiecutter.project_slug }}/README.md
Normal file
16
{{ cookiecutter.project_slug }}/README.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# {{ cookiecutter.project_name }}
|
||||
|
||||
[](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>
|
||||
4
{{ cookiecutter.project_slug }}/hacs.json
Normal file
4
{{ cookiecutter.project_slug }}/hacs.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"name": "{{ cookiecutter.project_name }}",
|
||||
"render_readme": true
|
||||
}
|
||||
27
{{ cookiecutter.project_slug }}/package.json
Normal file
27
{{ cookiecutter.project_slug }}/package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
22
{{ cookiecutter.project_slug }}/rollup.config.mjs
Normal file
22
{{ cookiecutter.project_slug }}/rollup.config.mjs
Normal 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 } }),
|
||||
],
|
||||
};
|
||||
0
{{ cookiecutter.project_slug }}/src/main.ts
Normal file
0
{{ cookiecutter.project_slug }}/src/main.ts
Normal file
4
{{ cookiecutter.project_slug }}/test/.env
Normal file
4
{{ cookiecutter.project_slug }}/test/.env
Normal file
@@ -0,0 +1,4 @@
|
||||
HASS_USERNAME=dev
|
||||
HASS_PASSWORD=dev
|
||||
LOVELACE_LOCAL_FILES={{ cookiecutter.project_file }}.js
|
||||
LOVELACE_PLUGINS="thomasloven/lovelace-card-mod"
|
||||
11
{{ cookiecutter.project_slug }}/test/configuration.yaml
Normal file
11
{{ cookiecutter.project_slug }}/test/configuration.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
default_config:
|
||||
|
||||
demo:
|
||||
|
||||
lovelace:
|
||||
mode: storage
|
||||
dashboards:
|
||||
lovelace-yaml:
|
||||
mode: yaml
|
||||
title: yaml
|
||||
filename: test/lovelace.yaml
|
||||
17
{{ cookiecutter.project_slug }}/test/docker-compose.yml
Normal file
17
{{ cookiecutter.project_slug }}/test/docker-compose.yml
Normal 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
|
||||
0
{{ cookiecutter.project_slug }}/test/lovelace.yaml
Normal file
0
{{ cookiecutter.project_slug }}/test/lovelace.yaml
Normal file
10
{{ cookiecutter.project_slug }}/tsconfig.json
Normal file
10
{{ cookiecutter.project_slug }}/tsconfig.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es2017",
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"experimentalDecorators": true
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user