This commit is contained in:
Richard Sperry 2025-04-17 22:53:08 -07:00
parent 154f5e8b9e
commit c93c301a1e
4 changed files with 4 additions and 38 deletions

View file

@ -33,5 +33,4 @@ added powershell
## TODO
get code to auto-launch terminal to motd
check install packages for needed
check install packages for needed

View file

@ -1,31 +0,0 @@
persist SERVER
add workspace persistant file
? add new custom service to run linking, store in data
https://developers.home-assistant.io/docs/add-ons/
cli
https://github.com/coder/code-server/blob/e3c09efcbcdfd632cbeac6044692d7ea9f493386/src/node/cli.ts#L35
conf
https://github.com/coder/code-server/blob/e3c09efcbcdfd632cbeac6044692d7ea9f493386/src/node/cli.ts#L65
- type: homeassistant
read_only: false
- type: addons
read_only: false
- type: addon_config
read_only: false
- type: data
read_only: false
- type: backup
read_only: false
- type: config
read_only: false
- type: media
read_only: false
- type: share
read_only: false
- type: ssl
read_only: false

View file

@ -43,10 +43,8 @@ RUN apt-get update \
unzip \
htop \
nano \
npm \
&& npm install -g @vscode/vsce \
npm \
&& rm -rf /var/lib/apt/lists/*
# npm and vsce allow code-server to check extensions signatures
# Install Powershell
WORKDIR /tmp/ps
@ -77,7 +75,6 @@ RUN if [ "${BUILD_ARCH}" = "aarch64" ]; then HA_CLI_URL="https://github.com/home
&& mv ./ha "/usr/bin/ha" \
&& chmod +x "/usr/bin/ha"
#Copy root file system
COPY rootfs/ /
RUN chown -R root:root /root \

View file

@ -13,6 +13,7 @@
"terminal.integrated.copyOnSelection": true,
"workbench.iconTheme": "vs-seti",
"yaml.format.enable": true,
"window.autoDetectColorScheme": true,
},
"extensions": {
"recommendations": [
@ -22,4 +23,4 @@
"streetsidesoftware.code-spell-checker" // i cant speel
]
}
}
}