Skip to content

Commit eeb3645

Browse files
committed
Refine dashboard theming and card behavior
1 parent dff130b commit eeb3645

63 files changed

Lines changed: 1807 additions & 619 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*.{js,jsx,ts,tsx,json,css,md}]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
NAVET_HASS_URL=http://homeassistant.local:8123
2+
NAVET_HASS_TOKEN=your-long-lived-access-token

biome.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
},
1212
"formatter": {
1313
"enabled": true,
14-
"indentStyle": "tab",
14+
"indentStyle": "space",
15+
"indentWidth": 2,
1516
"lineWidth": 100
1617
},
1718
"linter": {

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ services:
44
context: .
55
dockerfile: Dockerfile
66
environment:
7-
NAVET_HASS_URL: http://homeassistant.local:8123
8-
NAVET_HASS_TOKEN: your-long-lived-access-token
7+
NAVET_HASS_URL: ${NAVET_HASS_URL}
8+
NAVET_HASS_TOKEN: ${NAVET_HASS_TOKEN}
99
ports:
1010
- "8080:80"
1111
restart: unless-stopped

0 commit comments

Comments
 (0)