Initial add-on code

This commit is contained in:
Franck Nijhof 2019-03-24 23:43:22 +01:00
parent 416e586602
commit 344e8f48be
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
20 changed files with 810 additions and 0 deletions

View file

@ -0,0 +1,32 @@
#!/usr/bin/with-contenv bashio
# ==============================================================================
# Community Hass.io Add-ons: Visual Studio Code
# Runs the code server
# ==============================================================================
declare -a options
bashio::log.info 'Starting the code server...'
# Non-interactive
options+=(--port 1337)
options+=(--data-dir "/data/vscode")
if bashio::config.false 'ssl'; then
options+=(--allow-http)
else
options+=(--cert "/ssl/$(bashio::config 'certfile')")
options+=(--cert-key "/ssl/$(bashio::config 'keyfile')")
fi
if ! bashio::config.has_value 'password'; then
options+=(--no-auth)
else
options+=(--password "$(bashio::config 'password')")
fi
# Export env variables for the Home Assistant extension
export HASS_SERVER="http://hassio/homeassistant"
export HASS_TOKEN="${HASSIO_TOKEN:-}"
# Run the code server
exec code-server "${options[@]}" /config