net-daemon / docs

Documentation for NetDaemon
MIT License
53 stars 34 forks source link

Code Server config for Raspberry Pi #145

Open dakahler opened 2 years ago

dakahler commented 2 years ago

apt installation for .net 6 only works for x64. Since rpi is ARM, I switched the config to use the dotnet-install.sh script.

It would be nice to have this method in the instructions.

init_commands:
  - >-
    wget
    https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb
    -O packages-microsoft-prod.deb
  - dpkg -i packages-microsoft-prod.deb
  - rm packages-microsoft-prod.deb
  - apt-get update
  - apt-get install -y apt-transport-https
  - apt-get update
  - wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
  - chmod +x ./dotnet-install.sh
  - ./dotnet-install.sh -c 6.0
  - export PATH="$PATH:$HOME/.dotnet"
  - . ~/.profile
  - dotnet tool install -g JoySoftware.NetDaemon.HassModel.CodeGen
packages: []
log_level: info
config_path: /
bentayloruk commented 3 months ago

@dakahler et al. I'm new to HA and the rpi (I impulse purchased the HA Yellow), but would love to get NetDaemon going. Would anyone be able to point me to any existing installation instructions?