├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── apps ├── __init__.py ├── auth │ ├── __init__.py │ └── routes.py ├── config.py ├── home │ ├── __init__.py │ ├── routes.py │ └── util.py ├── models │ ├── __init__.py │ ├── config_model.py │ ├── default_vm_settings.py │ ├── domain_model.py │ ├── group.py │ ├── history.py │ ├── non_domain_model.py │ ├── plugin.py │ ├── user.py │ ├── util.py │ └── vm_image_model.py ├── plugins │ ├── ansible-deploy-vm-domain │ │ ├── inventory.yml.example │ │ ├── other_domain.yml │ │ ├── tasks │ │ │ ├── vmware_create_domain_linux_centos7_minimal │ │ │ │ ├── main.yml │ │ │ │ └── settings.json │ │ │ ├── vmware_create_domain_linux_ubuntu18.04_minimal │ │ │ │ ├── main.yml │ │ │ │ └── settings.json │ │ │ ├── vmware_create_domain_linux_ubuntu20.04_minimal │ │ │ │ ├── main.yml │ │ │ │ └── settings.json │ │ │ ├── vmware_create_domain_linux_ubuntu22.04_minimal │ │ │ │ ├── main.yml │ │ │ │ └── settings.json │ │ │ ├── vmware_create_domain_windows_10pro │ │ │ │ ├── main.yml │ │ │ │ └── settings.json │ │ │ ├── vmware_create_domain_windows_server2019dc_core │ │ │ │ ├── main.yml │ │ │ │ └── settings.json │ │ │ ├── vmware_create_domain_windows_server2019dc_de │ │ │ │ ├── main.yml │ │ │ │ └── settings.json │ │ │ ├── vmware_create_domain_windows_server2022dc_core │ │ │ │ ├── main.yml │ │ │ │ └── settings.json │ │ │ └── vmware_create_domain_windows_server2022dc_de │ │ │ │ ├── main.yml │ │ │ │ └── settings.json │ │ ├── templates │ │ │ ├── common-session.j2 │ │ │ ├── krb5.conf.j2 │ │ │ ├── realmd.conf.j2 │ │ │ └── sssd.conf.j2 │ │ └── vars │ │ │ └── other.yml │ └── ansible-deploy-vm │ │ ├── inventory.yml.example │ │ ├── other.yml │ │ ├── tasks │ │ ├── vmware_create_linux_centos7_gui │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_linux_centos7_minimal │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_linux_ubuntu18.04_gui │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_linux_ubuntu18.04_minimal │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_linux_ubuntu20.04_gui │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_linux_ubuntu20.04_minimal │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_linux_ubuntu22.04_developer │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_linux_ubuntu22.04_gui │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_linux_ubuntu22.04_minimal │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_windows_10pro │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_windows_server2019dc_core │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_windows_server2019dc_de │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_windows_server2022dc_core │ │ │ ├── main.yml │ │ │ └── settings.json │ │ ├── vmware_create_windows_server2022dc_de │ │ │ ├── main.yml │ │ │ └── settings.json │ │ └── vmware_create_windows_server2022dc_de_ad │ │ │ ├── main.yml │ │ │ ├── scripts │ │ │ └── powershell │ │ │ │ ├── ad_scripts │ │ │ │ └── ad_enable_localadmin.ps1 │ │ │ │ └── general_scripts │ │ │ │ ├── enable_rdp.ps1 │ │ │ │ ├── enable_winrm.ps1 │ │ │ │ └── install_apps_server.ps1 │ │ │ └── settings.json │ │ └── vars │ │ └── other.yml ├── settings │ ├── __init__.py │ ├── routes.py │ └── util.py ├── static │ ├── components │ │ ├── navbar │ │ │ └── navbar-dropdowns.css │ │ └── sidebar │ │ │ └── sidebar-default.css │ ├── css │ │ ├── auth.css │ │ ├── domain.css │ │ ├── error.css │ │ ├── history.css │ │ ├── index.css │ │ ├── logs.css │ │ ├── master.css │ │ ├── non-domain.css │ │ ├── prism-custom.css │ │ ├── settings.css │ │ └── style.css │ ├── font │ │ ├── Lato-Regular.eot │ │ ├── Lato-Regular.ttf │ │ ├── Lato-Regular.woff │ │ └── lato-regular.woff2 │ ├── images │ │ ├── applications │ │ │ ├── 3cx.png │ │ │ ├── 5etools.png │ │ │ ├── act.png │ │ │ ├── actual.png │ │ │ ├── adblock.png │ │ │ ├── adguard-home.png │ │ │ ├── adm.png │ │ │ ├── adminer.png │ │ │ ├── adsbexchange.png │ │ │ ├── airsonic.png │ │ │ ├── airtel.png │ │ │ ├── airvpn.png │ │ │ ├── alarmpi.png │ │ │ ├── albertheijn.png │ │ │ ├── alertmanager.png │ │ │ ├── algovpn.png │ │ │ ├── aliexpress.png │ │ │ ├── alloy.png │ │ │ ├── alltube.png │ │ │ ├── alma.png │ │ │ ├── alpine.png │ │ │ ├── amazon-light.png │ │ │ ├── amazon.png │ │ │ ├── amcrest-cloud.png │ │ │ ├── amcrest.png │ │ │ ├── amd-light.png │ │ │ ├── amd.png │ │ │ ├── ami-alt-light.png │ │ │ ├── ami-alt.png │ │ │ ├── ami.png │ │ │ ├── amp.png │ │ │ ├── ampache.png │ │ │ ├── amvd.png │ │ │ ├── android-auto.png │ │ │ ├── android-light.png │ │ │ ├── android-robot.png │ │ │ ├── android.png │ │ │ ├── anonaddy.png │ │ │ ├── ansible.png │ │ │ ├── anything-llm-dark.png │ │ │ ├── anything-llm-light.png │ │ │ ├── apache-airflow.png │ │ │ ├── apache-cassandra.png │ │ │ ├── apache-druid.png │ │ │ ├── apache-openoffice.png │ │ │ ├── apache-solr.png │ │ │ ├── apache-subversion.png │ │ │ ├── apache-tomcat.png │ │ │ ├── apache.png │ │ │ ├── apc.png │ │ │ ├── apiscp.png │ │ │ ├── appdaemon.png │ │ │ ├── apple-alt.png │ │ │ ├── apple.png │ │ │ ├── apprise.png │ │ │ ├── arch.png │ │ │ ├── archisteamfarm.png │ │ │ ├── archivebox.png │ │ │ ├── archiveteamwarrior.png │ │ │ ├── arduino.png │ │ │ ├── arggocd.png │ │ │ ├── argocd.png │ │ │ ├── ariang.png │ │ │ ├── arm.png │ │ │ ├── arris-light.png │ │ │ ├── arris.png │ │ │ ├── artifactory.png │ │ │ ├── aruba.png │ │ │ ├── asana.png │ │ │ ├── asciinema.png │ │ │ ├── asrockrackipmi.png │ │ │ ├── assetgrid.png │ │ │ ├── asterisk.png │ │ │ ├── astral-light.png │ │ │ ├── astral.png │ │ │ ├── asus-light.png │ │ │ ├── asus-rog.png │ │ │ ├── asus-router.png │ │ │ ├── asus.png │ │ │ ├── asustor-data-master.png │ │ │ ├── asustor.png │ │ │ ├── at-t.png │ │ │ ├── atlassian-bamboo.png │ │ │ ├── atlassian-confluence.png │ │ │ ├── atlassian-jira.png │ │ │ ├── atlassian-opsgenie.png │ │ │ ├── atlassian-trello.png │ │ │ ├── atlassian.png │ │ │ ├── audacity.png │ │ │ ├── audiobookshelf.png │ │ │ ├── auracast.png │ │ │ ├── authelia.png │ │ │ ├── authentik-light.png │ │ │ ├── authentik.png │ │ │ ├── autobrr.png │ │ │ ├── avigilon.png │ │ │ ├── avmfritzbox.png │ │ │ ├── aws-ecs.png │ │ │ ├── aws.png │ │ │ ├── awwesome.png │ │ │ ├── awx.png │ │ │ ├── axis.png │ │ │ ├── azuracast.png │ │ │ ├── azure-container-instances.png │ │ │ ├── azure-container-service.png │ │ │ ├── azure-devops.png │ │ │ ├── azure-dns.png │ │ │ ├── azure.png │ │ │ ├── babybuddy.png │ │ │ ├── backblaze.png │ │ │ ├── bacula.png │ │ │ ├── badge.png │ │ │ ├── baikal.png │ │ │ ├── bar-assistant.png │ │ │ ├── barcodebuddy.png │ │ │ ├── baserow.png │ │ │ ├── basilisk.png │ │ │ ├── bastillion.png │ │ │ ├── bazarr-light.png │ │ │ ├── bazarr.png │ │ │ ├── beef-light.png │ │ │ ├── beef.png │ │ │ ├── beets.png │ │ │ ├── benotes.png │ │ │ ├── betanin.png │ │ │ ├── bible-gateway.png │ │ │ ├── bibliogram.png │ │ │ ├── biedronka.png │ │ │ ├── bing.png │ │ │ ├── birdnet.png │ │ │ ├── bitcoin.png │ │ │ ├── bithumen.png │ │ │ ├── bitwarden.png │ │ │ ├── blocky.png │ │ │ ├── blogger.png │ │ │ ├── blue-iris.png │ │ │ ├── bluetooth.png │ │ │ ├── bluewallet.png │ │ │ ├── bobcat-miner.png │ │ │ ├── booksonic.png │ │ │ ├── bookstack.png │ │ │ ├── bootstrap.png │ │ │ ├── borg.png │ │ │ ├── borgbackup.png │ │ │ ├── boundary.png │ │ │ ├── box.png │ │ │ ├── brave-dev.png │ │ │ ├── brave.png │ │ │ ├── brewpi.png │ │ │ ├── brillcam.png │ │ │ ├── brocade.png │ │ │ ├── brother.png │ │ │ ├── browserless-light.png │ │ │ ├── browserless.png │ │ │ ├── browsh.png │ │ │ ├── btcpay-server.png │ │ │ ├── buddy.png │ │ │ ├── budget-zero.png │ │ │ ├── budibase-light.png │ │ │ ├── budibase.png │ │ │ ├── buffalo.png │ │ │ ├── bunkerweb-light.png │ │ │ ├── bunkerweb.png │ │ │ ├── buxfer.png │ │ │ ├── c.png │ │ │ ├── cabot.png │ │ │ ├── cacti.png │ │ │ ├── caddy.png │ │ │ ├── cadvisor.png │ │ │ ├── calckey.png │ │ │ ├── caldera.png │ │ │ ├── calibre-web.png │ │ │ ├── calibre.png │ │ │ ├── camera-ui.png │ │ │ ├── canonical.png │ │ │ ├── cardigann-light.png │ │ │ ├── cardigann.png │ │ │ ├── carrefour.png │ │ │ ├── casaos.png │ │ │ ├── castopod.png │ │ │ ├── cc-light.png │ │ │ ├── cc.png │ │ │ ├── centos.png │ │ │ ├── ceph.png │ │ │ ├── cert-manager.png │ │ │ ├── cert-warden.png │ │ │ ├── chainguard.png │ │ │ ├── changedetection-io.png │ │ │ ├── channels.png │ │ │ ├── chatgpt.png │ │ │ ├── chatpad-ai.png │ │ │ ├── checkmk.png │ │ │ ├── cherry.png │ │ │ ├── chevereto.png │ │ │ ├── chiefonboarding.png │ │ │ ├── chowdown.png │ │ │ ├── chrome-beta.png │ │ │ ├── chrome-canary.png │ │ │ ├── chrome-dev.png │ │ │ ├── chrome-devtools.png │ │ │ ├── chrome-remote-desktop.png │ │ │ ├── chrome.png │ │ │ ├── chromecast-light.png │ │ │ ├── chromecast.png │ │ │ ├── chromium.png │ │ │ ├── chronograf.png │ │ │ ├── cilium.png │ │ │ ├── cinny-light.png │ │ │ ├── cinny.png │ │ │ ├── cisco.png │ │ │ ├── clash.png │ │ │ ├── clashX.png │ │ │ ├── closed-captioning-light.png │ │ │ ├── closed-captioning.png │ │ │ ├── cloud66.png │ │ │ ├── cloud9.png │ │ │ ├── cloudbeaver.png │ │ │ ├── cloudcmd.png │ │ │ ├── cloudflare-pages.png │ │ │ ├── cloudflare-zero-trust.png │ │ │ ├── cloudflare.png │ │ │ ├── cloudpanel.png │ │ │ ├── cockpit-cms-light.png │ │ │ ├── cockpit-cms.png │ │ │ ├── cockpit.png │ │ │ ├── code-server.png │ │ │ ├── code.png │ │ │ ├── codeberg.png │ │ │ ├── coder-light.png │ │ │ ├── coder.png │ │ │ ├── codestats-light.png │ │ │ ├── codestats.png │ │ │ ├── codex.png │ │ │ ├── codimd-light.png │ │ │ ├── codimd.png │ │ │ ├── collabora-online.png │ │ │ ├── commafeed.png │ │ │ ├── concourse.png │ │ │ ├── consul.png │ │ │ ├── contabo.png │ │ │ ├── coolify.png │ │ │ ├── coredns.png │ │ │ ├── coreos.png │ │ │ ├── cosign.png │ │ │ ├── costco.png │ │ │ ├── couchpotato.png │ │ │ ├── counter-strike-2.png │ │ │ ├── counter-strike-global-offensive.png │ │ │ ├── cozy-cloud.png │ │ │ ├── cozy.png │ │ │ ├── cpanel.png │ │ │ ├── cpp.png │ │ │ ├── crafty-controller.png │ │ │ ├── crater-invoice.png │ │ │ ├── crazydomains.png │ │ │ ├── cribl-light.png │ │ │ ├── cribl.png │ │ │ ├── cross-seed-square.png │ │ │ ├── cross-seed.png │ │ │ ├── crowdsec.png │ │ │ ├── cryptomator.png │ │ │ ├── cryptpad.png │ │ │ ├── csharp.png │ │ │ ├── css.png │ │ │ ├── cups-light.png │ │ │ ├── cups.png │ │ │ ├── cura.png │ │ │ ├── cyberchef.png │ │ │ ├── d-link-wifi.png │ │ │ ├── d-link.png │ │ │ ├── dahua.png │ │ │ ├── dart.png │ │ │ ├── dashboard-icons.png │ │ │ ├── dashdot.png │ │ │ ├── dashy.png │ │ │ ├── datadog.png │ │ │ ├── dc-os.png │ │ │ ├── dd-wrt-light.png │ │ │ ├── dd-wrt.png │ │ │ ├── ddns-updater.png │ │ │ ├── debian.png │ │ │ ├── deemix.png │ │ │ ├── dell.png │ │ │ ├── deluge.png │ │ │ ├── deno-light.png │ │ │ ├── deno.png │ │ │ ├── denon-light.png │ │ │ ├── denon.png │ │ │ ├── devtooly-light.png │ │ │ ├── devtooly.png │ │ │ ├── diagrams-net.png │ │ │ ├── dietpi.png │ │ │ ├── digital-ocean.png │ │ │ ├── dillinger.png │ │ │ ├── dim-light.png │ │ │ ├── dim.png │ │ │ ├── directadmin.png │ │ │ ├── directus.png │ │ │ ├── discord.png │ │ │ ├── discourse.png │ │ │ ├── diskover.png │ │ │ ├── disney-plus-light.png │ │ │ ├── disney-plus.png │ │ │ ├── diun.png │ │ │ ├── diyhue.png │ │ │ ├── dlna.png │ │ │ ├── docker-amd.png │ │ │ ├── docker-compose.png │ │ │ ├── docker-gc.png │ │ │ ├── docker-mailserver.png │ │ │ ├── docker-moby.png │ │ │ ├── docker.png │ │ │ ├── dockge-light.png │ │ │ ├── dockge.png │ │ │ ├── dockstarter.png │ │ │ ├── docsify.png │ │ │ ├── docspell.png │ │ │ ├── docuseal.png │ │ │ ├── dogpile.png │ │ │ ├── dokuwiki.png │ │ │ ├── dolibarr.png │ │ │ ├── dolphin.png │ │ │ ├── domainmod.png │ │ │ ├── domoticz.png │ │ │ ├── dopplertask.png │ │ │ ├── double-take.png │ │ │ ├── dovecot.png │ │ │ ├── dozzle.png │ │ │ ├── draw-io.png │ │ │ ├── draw.png │ │ │ ├── draytek.png │ │ │ ├── drone.png │ │ │ ├── droppy.png │ │ │ ├── duckdns.png │ │ │ ├── duckduckgo.png │ │ │ ├── duo.png │ │ │ ├── duplicacy.png │ │ │ ├── duplicati.png │ │ │ ├── easy-gate-light.png │ │ │ ├── easy-gate.png │ │ │ ├── ebay.png │ │ │ ├── eblocker.png │ │ │ ├── eclipse-mosquitto.png │ │ │ ├── edge-dev.png │ │ │ ├── edge.png │ │ │ ├── edgeos-light.png │ │ │ ├── edgeos.png │ │ │ ├── elastic-beats.png │ │ │ ├── elastic-kibana.png │ │ │ ├── elastic-logstash.png │ │ │ ├── elastic.png │ │ │ ├── elasticsearch.png │ │ │ ├── electron.png │ │ │ ├── element.png │ │ │ ├── emacs.png │ │ │ ├── emby.png │ │ │ ├── embystat.png │ │ │ ├── emq-light.png │ │ │ ├── emq.png │ │ │ ├── emqx.png │ │ │ ├── emulatorjs.png │ │ │ ├── enbizcard.png │ │ │ ├── epson-iprint.png │ │ │ ├── ersatztv.png │ │ │ ├── erste-george.png │ │ │ ├── erste.png │ │ │ ├── esphome.png │ │ │ ├── espressif.png │ │ │ ├── etcd.png │ │ │ ├── etesync.png │ │ │ ├── ethereum.png │ │ │ ├── etherpad.png │ │ │ ├── evebox.png │ │ │ ├── eweka.png │ │ │ ├── excalidraw-light.png │ │ │ ├── excalidraw.png │ │ │ ├── f5-networks.png │ │ │ ├── facebook-messenger.png │ │ │ ├── facebook.png │ │ │ ├── falcon-christmas.png │ │ │ ├── falcon-player.png │ │ │ ├── fast-com-light.png │ │ │ ├── fast-com.png │ │ │ ├── fastmail.png │ │ │ ├── fedora-alt.png │ │ │ ├── fedora.png │ │ │ ├── feedly.png │ │ │ ├── feishin.png │ │ │ ├── fenrus-light.png │ │ │ ├── fenrus.png │ │ │ ├── ferdi.png │ │ │ ├── ferdium.png │ │ │ ├── fermentrack.png │ │ │ ├── ferretdb-white.png │ │ │ ├── ferretdb.png │ │ │ ├── filebot.png │ │ │ ├── filebrowser.png │ │ │ ├── filecloud-light.png │ │ │ ├── filecloud.png │ │ │ ├── fileflows.png │ │ │ ├── filegator.png │ │ │ ├── filepizza.png │ │ │ ├── filerun.png │ │ │ ├── files.png │ │ │ ├── filezilla.png │ │ │ ├── fios-light.png │ │ │ ├── fios.png │ │ │ ├── firebase.png │ │ │ ├── firefly.png │ │ │ ├── firefox-beta.png │ │ │ ├── firefox-developer-edition.png │ │ │ ├── firefox-lite.png │ │ │ ├── firefox-nightly.png │ │ │ ├── firefox-reality.png │ │ │ ├── firefox-send.png │ │ │ ├── firefox.png │ │ │ ├── fireshare.png │ │ │ ├── firewalla.png │ │ │ ├── flame.png │ │ │ ├── flaresolverr.png │ │ │ ├── flarum.png │ │ │ ├── flat-notes.png │ │ │ ├── flathub.png │ │ │ ├── flatpak.png │ │ │ ├── flexget.png │ │ │ ├── flightaware.png │ │ │ ├── flightradar24.png │ │ │ ├── flogo.png │ │ │ ├── flood.png │ │ │ ├── fluffychat.png │ │ │ ├── fluidd.png │ │ │ ├── flux-cd.png │ │ │ ├── fly-io.png │ │ │ ├── focalboard.png │ │ │ ├── foldingathome.png │ │ │ ├── fontawesome.png │ │ │ ├── forgejo.png │ │ │ ├── fortinet.png │ │ │ ├── foscam.png │ │ │ ├── fossil.png │ │ │ ├── foundry-vtt.png │ │ │ ├── franz.png │ │ │ ├── freebox-delta.png │ │ │ ├── freebox-pop.png │ │ │ ├── freebox-revolution.png │ │ │ ├── freedombox.png │ │ │ ├── freeipa.png │ │ │ ├── freenas-light.png │ │ │ ├── freenas.png │ │ │ ├── freenom.png │ │ │ ├── freepbx.png │ │ │ ├── freescout.png │ │ │ ├── freshping.png │ │ │ ├── freshrss.png │ │ │ ├── friendica.png │ │ │ ├── frigate-light.png │ │ │ ├── frigate.png │ │ │ ├── fronius.png │ │ │ ├── fulcio.png │ │ │ ├── funkwhale.png │ │ │ ├── fusionpbx.png │ │ │ ├── gamevault.png │ │ │ ├── gameyfin-light.png │ │ │ ├── gameyfin.png │ │ │ ├── gaps.png │ │ │ ├── gatsby.png │ │ │ ├── gatus.png │ │ │ ├── gboard.png │ │ │ ├── geckoview.png │ │ │ ├── gentoo.png │ │ │ ├── gerbera.png │ │ │ ├── get-iplayer.png │ │ │ ├── ghost-light.png │ │ │ ├── ghost.png │ │ │ ├── ghostfolio.png │ │ │ ├── gigaset.png │ │ │ ├── git.png │ │ │ ├── gitbook.png │ │ │ ├── gitea.png │ │ │ ├── gitee.png │ │ │ ├── github-light.png │ │ │ ├── github.png │ │ │ ├── gitlab.png │ │ │ ├── gitsign.png │ │ │ ├── gladys-assistant.png │ │ │ ├── glances.png │ │ │ ├── glpi.png │ │ │ ├── gluetun.png │ │ │ ├── gmail.png │ │ │ ├── go.png │ │ │ ├── goaccess.png │ │ │ ├── godaddy.png │ │ │ ├── gogs.png │ │ │ ├── gollum.png │ │ │ ├── gonic.png │ │ │ ├── goodreads.png │ │ │ ├── google-admin.png │ │ │ ├── google-admob.png │ │ │ ├── google-alerts.png │ │ │ ├── google-analytics.png │ │ │ ├── google-assistant.png │ │ │ ├── google-calendar.png │ │ │ ├── google-chat.png │ │ │ ├── google-classroom.png │ │ │ ├── google-cloud-platform.png │ │ │ ├── google-cloud-print.png │ │ │ ├── google-compute-engine.png │ │ │ ├── google-contacts.png │ │ │ ├── google-docs.png │ │ │ ├── google-domains.png │ │ │ ├── google-drive.png │ │ │ ├── google-earth.png │ │ │ ├── google-fi.png │ │ │ ├── google-fit.png │ │ │ ├── google-fonts.png │ │ │ ├── google-forms.png │ │ │ ├── google-home.png │ │ │ ├── google-keep.png │ │ │ ├── google-lens.png │ │ │ ├── google-maps.png │ │ │ ├── google-meet.png │ │ │ ├── google-messages.png │ │ │ ├── google-news.png │ │ │ ├── google-one.png │ │ │ ├── google-pay.png │ │ │ ├── google-photos.png │ │ │ ├── google-play-books.png │ │ │ ├── google-play-games.png │ │ │ ├── google-play.png │ │ │ ├── google-podcasts.png │ │ │ ├── google-scholar.png │ │ │ ├── google-search-console.png │ │ │ ├── google-sheets.png │ │ │ ├── google-shopping.png │ │ │ ├── google-sites.png │ │ │ ├── google-slides.png │ │ │ ├── google-street-view.png │ │ │ ├── google-translate.png │ │ │ ├── google-tv.png │ │ │ ├── google-voice.png │ │ │ ├── google-wallet.png │ │ │ ├── google-wifi.png │ │ │ ├── google.png │ │ │ ├── gotify.png │ │ │ ├── grafana.png │ │ │ ├── gramps.png │ │ │ ├── grandstream.png │ │ │ ├── grav-light.png │ │ │ ├── grav.png │ │ │ ├── graylog.png │ │ │ ├── greenbone.png │ │ │ ├── grist.png │ │ │ ├── grocy.png │ │ │ ├── grype.png │ │ │ ├── guacamole-light.png │ │ │ ├── guacamole.png │ │ │ ├── hammond.png │ │ │ ├── handbrake.png │ │ │ ├── haproxy.png │ │ │ ├── harbor.png │ │ │ ├── hard-forum.png │ │ │ ├── harvester.png │ │ │ ├── hastypaste.png │ │ │ ├── hasura.png │ │ │ ├── hatsh-light.png │ │ │ ├── hatsh.png │ │ │ ├── hdhomerun.png │ │ │ ├── headphones.png │ │ │ ├── healthchecks-v2.png │ │ │ ├── healthchecks.png │ │ │ ├── hedgedoc.png │ │ │ ├── heimdall-light.png │ │ │ ├── heimdall.png │ │ │ ├── helium-token.png │ │ │ ├── helm.png │ │ │ ├── hetzner.png │ │ │ ├── hexo.png │ │ │ ├── hifiberry.png │ │ │ ├── hikvision.png │ │ │ ├── hilook.png │ │ │ ├── hoarder-light.png │ │ │ ├── hoarder.png │ │ │ ├── homarr.png │ │ │ ├── home-assistant-alt.png │ │ │ ├── home-assistant-light.png │ │ │ ├── home-assistant.png │ │ │ ├── homebox.png │ │ │ ├── homebridge.png │ │ │ ├── homepage.png │ │ │ ├── homer.png │ │ │ ├── homeseer.png │ │ │ ├── homey.png │ │ │ ├── honeygain.png │ │ │ ├── hoobs.png │ │ │ ├── hoppscotch.png │ │ │ ├── hortusfox.png │ │ │ ├── hostinger.png │ │ │ ├── hotio.png │ │ │ ├── hp.png │ │ │ ├── html.png │ │ │ ├── huawei.png │ │ │ ├── hubitat.png │ │ │ ├── hugging-face.png │ │ │ ├── huginn.png │ │ │ ├── hugo.png │ │ │ ├── humhub.png │ │ │ ├── hydra.png │ │ │ ├── hyperion.png │ │ │ ├── i2p-light.png │ │ │ ├── i2p.png │ │ │ ├── i2pd.png │ │ │ ├── icecast.png │ │ │ ├── icinga.png │ │ │ ├── idrac.png │ │ │ ├── ihatemoney.png │ │ │ ├── ilo.png │ │ │ ├── immich.png │ │ │ ├── influxdb.png │ │ │ ├── infoblox.png │ │ │ ├── insanelymac.png │ │ │ ├── instagram.png │ │ │ ├── inventree.png │ │ │ ├── invidious.png │ │ │ ├── invisioncommunity.png │ │ │ ├── invoiceninja-light.png │ │ │ ├── invoiceninja.png │ │ │ ├── invoke-ai.png │ │ │ ├── iobroker.png │ │ │ ├── ionos-light.png │ │ │ ├── ionos.png │ │ │ ├── ipboard.png │ │ │ ├── ipcamtalk.png │ │ │ ├── ipfs.png │ │ │ ├── irc.png │ │ │ ├── iredmail.png │ │ │ ├── ispconfig.png │ │ │ ├── ispy.png │ │ │ ├── it-tools-light.png │ │ │ ├── it-tools.png │ │ │ ├── jackett-light.png │ │ │ ├── jackett.png │ │ │ ├── jaeger.png │ │ │ ├── jamstack.png │ │ │ ├── java.png │ │ │ ├── javascript.png │ │ │ ├── jdownloader.png │ │ │ ├── jdownloader2.png │ │ │ ├── jeedom.png │ │ │ ├── jekyll.png │ │ │ ├── jellyfin-vue.png │ │ │ ├── jellyfin.png │ │ │ ├── jellyseerr.png │ │ │ ├── jellystat-light.png │ │ │ ├── jellystat.png │ │ │ ├── jelu.png │ │ │ ├── jenkins.png │ │ │ ├── jetbrains-fleet.png │ │ │ ├── jetbrains-youtrack.png │ │ │ ├── jio.png │ │ │ ├── jira.png │ │ │ ├── jitsi-meet.png │ │ │ ├── jitsi.png │ │ │ ├── joal.png │ │ │ ├── joomla.png │ │ │ ├── joplin.png │ │ │ ├── julia.png │ │ │ ├── jupyter.png │ │ │ ├── kagi.png │ │ │ ├── kaizoku.png │ │ │ ├── kamatera.png │ │ │ ├── kapacitor.png │ │ │ ├── kapowarr.png │ │ │ ├── kasm-workspaces.png │ │ │ ├── kasm.png │ │ │ ├── kasten-k10.png │ │ │ ├── kaufland.png │ │ │ ├── kavita.png │ │ │ ├── kbin-light.png │ │ │ ├── kbin.png │ │ │ ├── keenetic-new.png │ │ │ ├── keenetic.png │ │ │ ├── keila.png │ │ │ ├── kerberos.png │ │ │ ├── kestra.png │ │ │ ├── keycloak.png │ │ │ ├── keyoxide-alt.png │ │ │ ├── keyoxide.png │ │ │ ├── kibana.png │ │ │ ├── kick.png │ │ │ ├── kimai.png │ │ │ ├── kinto.png │ │ │ ├── kitana.png │ │ │ ├── kitchenowl.png │ │ │ ├── kiwix-light.png │ │ │ ├── kiwix.png │ │ │ ├── klipper.png │ │ │ ├── ko-fi.png │ │ │ ├── kodi.png │ │ │ ├── koel.png │ │ │ ├── koillection.png │ │ │ ├── komga.png │ │ │ ├── kopia.png │ │ │ ├── kotlin.png │ │ │ ├── kpn.png │ │ │ ├── krusader.png │ │ │ ├── kubernetes-dashboard.png │ │ │ ├── kubernetes.png │ │ │ ├── kutt.png │ │ │ ├── lancache.png │ │ │ ├── lanraragi.png │ │ │ ├── lark.png │ │ │ ├── lazylibrarian.png │ │ │ ├── leanote.png │ │ │ ├── leantime.png │ │ │ ├── lemmy-light.png │ │ │ ├── lemmy.png │ │ │ ├── lemonldap-ng.png │ │ │ ├── lets-encrypt.png │ │ │ ├── libreddit.png │ │ │ ├── libremdb.png │ │ │ ├── librenms-light.png │ │ │ ├── librenms.png │ │ │ ├── libreoffice.png │ │ │ ├── librephotos-light.png │ │ │ ├── librephotos.png │ │ │ ├── librespeed.png │ │ │ ├── librex.png │ │ │ ├── librey.png │ │ │ ├── lidarr.png │ │ │ ├── lidl.png │ │ │ ├── lightning-terminal.png │ │ │ ├── lighttpd.png │ │ │ ├── linkace.png │ │ │ ├── linkding.png │ │ │ ├── linkedin.png │ │ │ ├── linkstack.png │ │ │ ├── linksys.png │ │ │ ├── linkwarden-light.png │ │ │ ├── linkwarden.png │ │ │ ├── linode.png │ │ │ ├── linux-mint.png │ │ │ ├── linuxserver-io.png │ │ │ ├── listmonk.png │ │ │ ├── littlelink-custom.png │ │ │ ├── lnbits.png │ │ │ ├── lobe-chat.png │ │ │ ├── logitech-gaming.png │ │ │ ├── logitech-legacy-light.png │ │ │ ├── logitech-legacy.png │ │ │ ├── logitech-light.png │ │ │ ├── logitech.png │ │ │ ├── logstash.png │ │ │ ├── loki.png │ │ │ ├── longhorn.png │ │ │ ├── lsio.png │ │ │ ├── lua.png │ │ │ ├── lubelogger.png │ │ │ ├── lychee.png │ │ │ ├── lynx.png │ │ │ ├── mailcow.png │ │ │ ├── mailcowsogo.png │ │ │ ├── mailfence.png │ │ │ ├── mailhog.png │ │ │ ├── mailinabox.png │ │ │ ├── mailu.png │ │ │ ├── mainsail.png │ │ │ ├── mak.png │ │ │ ├── makemkv.png │ │ │ ├── maloja.png │ │ │ ├── mango.png │ │ │ ├── manjaro-linux.png │ │ │ ├── mantisbt.png │ │ │ ├── manyfold.png │ │ │ ├── maptiler.png │ │ │ ├── marginalia.png │ │ │ ├── mariadb.png │ │ │ ├── mastodon.png │ │ │ ├── matomo.png │ │ │ ├── matrix-light.png │ │ │ ├── matrix-synapse-light.png │ │ │ ├── matrix-synapse.png │ │ │ ├── matrix.png │ │ │ ├── mattermost.png │ │ │ ├── mautic-light.png │ │ │ ├── mautic.png │ │ │ ├── mayan-edms.png │ │ │ ├── mayan-light.png │ │ │ ├── mcmyadmin.png │ │ │ ├── mealie.png │ │ │ ├── mediathekview.png │ │ │ ├── mediawiki.png │ │ │ ├── medusa.png │ │ │ ├── mega-nz.png │ │ │ ├── memos.png │ │ │ ├── mempool.png │ │ │ ├── meraki.png │ │ │ ├── mercusys.png │ │ │ ├── meshcentral.png │ │ │ ├── meta.png │ │ │ ├── metabase.png │ │ │ ├── metube.png │ │ │ ├── microbin.png │ │ │ ├── microsoft-office.png │ │ │ ├── microsoft-sql-server.png │ │ │ ├── microsoft-todo.png │ │ │ ├── microsoft.png │ │ │ ├── microsoft365-admin-center.png │ │ │ ├── midjourney-light.png │ │ │ ├── midjourney.png │ │ │ ├── mikrotik.png │ │ │ ├── minecraft.png │ │ │ ├── mineos.png │ │ │ ├── miniflux-light.png │ │ │ ├── miniflux.png │ │ │ ├── minimserver.png │ │ │ ├── minio-light.png │ │ │ ├── minio.png │ │ │ ├── misp.png │ │ │ ├── mkdocs.png │ │ │ ├── mkvtoolnix.png │ │ │ ├── mobaxterm.png │ │ │ ├── mobotix.png │ │ │ ├── modrinth.png │ │ │ ├── mojeek.png │ │ │ ├── molecule.png │ │ │ ├── monero.png │ │ │ ├── mongodb.png │ │ │ ├── monica.png │ │ │ ├── monit.png │ │ │ ├── moodle.png │ │ │ ├── motioneye.png │ │ │ ├── mpm.png │ │ │ ├── mqtt.png │ │ │ ├── mstream.png │ │ │ ├── mullvad-browser.png │ │ │ ├── mullvad.png │ │ │ ├── multi-scrobbler.png │ │ │ ├── mumble.png │ │ │ ├── musicbrainz.png │ │ │ ├── mylar.png │ │ │ ├── mysql.png │ │ │ ├── n8n.png │ │ │ ├── nagios.png │ │ │ ├── nautical-backup.png │ │ │ ├── navidrome.png │ │ │ ├── ncore.png │ │ │ ├── neko-light.png │ │ │ ├── neko.png │ │ │ ├── neo4j.png │ │ │ ├── neocities.png │ │ │ ├── neonlink.png │ │ │ ├── netalertx.png │ │ │ ├── netapp.png │ │ │ ├── netatmo.png │ │ │ ├── netbird.png │ │ │ ├── netboot.png │ │ │ ├── netbox.png │ │ │ ├── netcam-studio.png │ │ │ ├── netdata.png │ │ │ ├── netflix.png │ │ │ ├── netgear-orbi.png │ │ │ ├── netgear.png │ │ │ ├── netlify.png │ │ │ ├── netmaker.png │ │ │ ├── netsurf.png │ │ │ ├── network-ups-tools.png │ │ │ ├── network-weathermap.png │ │ │ ├── newegg.png │ │ │ ├── newsblur.png │ │ │ ├── nextcloud-blue.png │ │ │ ├── nextcloud-calendar.png │ │ │ ├── nextcloud-cookbook.png │ │ │ ├── nextcloud-cospend.png │ │ │ ├── nextcloud-deck.png │ │ │ ├── nextcloud-files.png │ │ │ ├── nextcloud-ncdownloader.png │ │ │ ├── nextcloud-news.png │ │ │ ├── nextcloud-notes.png │ │ │ ├── nextcloud-photos.png │ │ │ ├── nextcloud-talk.png │ │ │ ├── nextcloud-tasks.png │ │ │ ├── nextcloud-timemanager.png │ │ │ ├── nextcloud-white.png │ │ │ ├── nextcloud.png │ │ │ ├── nextdns.png │ │ │ ├── nextjs.png │ │ │ ├── nextpvr.png │ │ │ ├── nginx-proxy-manager.png │ │ │ ├── nginx.png │ │ │ ├── nicotine-plus.png │ │ │ ├── nightscout-light.png │ │ │ ├── nightscout.png │ │ │ ├── nitter.png │ │ │ ├── nocodb.png │ │ │ ├── node-red.png │ │ │ ├── nodejs-alt.png │ │ │ ├── nodejs.png │ │ │ ├── nomad.png │ │ │ ├── nomie.png │ │ │ ├── nordvpn.png │ │ │ ├── notesnook-light.png │ │ │ ├── notesnook.png │ │ │ ├── notifiarr.png │ │ │ ├── notion-light.png │ │ │ ├── notion.png │ │ │ ├── nowshowing.png │ │ │ ├── ntfy-light.png │ │ │ ├── ntfy.png │ │ │ ├── ntop.png │ │ │ ├── ntopng.png │ │ │ ├── nut.png │ │ │ ├── nxfilter.png │ │ │ ├── nxlog.png │ │ │ ├── nzbget.png │ │ │ ├── nzbhydra.png │ │ │ ├── nzbhydra2-light.png │ │ │ ├── nzbhydra2.png │ │ │ ├── obico.png │ │ │ ├── obitalk.png │ │ │ ├── observium.png │ │ │ ├── observo-ai.png │ │ │ ├── obsidian.png │ │ │ ├── octoeverywhere.png │ │ │ ├── octoprint.png │ │ │ ├── oculus-light.png │ │ │ ├── oculus.png │ │ │ ├── odoo.png │ │ │ ├── office-365.png │ │ │ ├── olivetin.png │ │ │ ├── ollama.png │ │ │ ├── omada.png │ │ │ ├── ombi.png │ │ │ ├── omnidb.png │ │ │ ├── onedev-light.png │ │ │ ├── onedev.png │ │ │ ├── onlyoffice.png │ │ │ ├── open-resume.png │ │ │ ├── open-webui-light.png │ │ │ ├── open-webui.png │ │ │ ├── openai-light.png │ │ │ ├── openai.png │ │ │ ├── openeats.png │ │ │ ├── opengarage.png │ │ │ ├── opengist-light.png │ │ │ ├── opengist.png │ │ │ ├── openhab.png │ │ │ ├── openmaptiles.png │ │ │ ├── openmediavault.png │ │ │ ├── openoffice.png │ │ │ ├── openproject.png │ │ │ ├── opensearch.png │ │ │ ├── openspeedtest.png │ │ │ ├── opensprinkler.png │ │ │ ├── openstack.png │ │ │ ├── openstreetmap.png │ │ │ ├── opensuse.png │ │ │ ├── openvas.png │ │ │ ├── openvpn.png │ │ │ ├── openwrt.png │ │ │ ├── opera-beta.png │ │ │ ├── opera-developer.png │ │ │ ├── opera-mini-beta.png │ │ │ ├── opera-mini.png │ │ │ ├── opera-neon.png │ │ │ ├── opera-touch.png │ │ │ ├── opera.png │ │ │ ├── opnsense.png │ │ │ ├── oracle-cloud.png │ │ │ ├── oracle.png │ │ │ ├── orange.png │ │ │ ├── orcaslicer.png │ │ │ ├── organizr.png │ │ │ ├── origin.png │ │ │ ├── oscarr-light.png │ │ │ ├── oscarr.png │ │ │ ├── osticket.png │ │ │ ├── outline.png │ │ │ ├── overclockers.png │ │ │ ├── overleaf.png │ │ │ ├── overseerr.png │ │ │ ├── ovh.png │ │ │ ├── ovirt.png │ │ │ ├── owasp-zap.png │ │ │ ├── owncloud.png │ │ │ ├── ownphotos-light.png │ │ │ ├── ownphotos.png │ │ │ ├── owntracks.png │ │ │ ├── pagerduty.png │ │ │ ├── pairdrop.png │ │ │ ├── palemoon.png │ │ │ ├── palo-alto.png │ │ │ ├── paperless-ng.png │ │ │ ├── paperless-ngx.png │ │ │ ├── paperless.png │ │ │ ├── papermerge.png │ │ │ ├── part-db-light.png │ │ │ ├── part-db.png │ │ │ ├── partkeepr.png │ │ │ ├── passbolt.png │ │ │ ├── passwordpusher-light.png │ │ │ ├── passwordpusher.png │ │ │ ├── passwork.png │ │ │ ├── pastatool-light.png │ │ │ ├── pastatool.png │ │ │ ├── pastebin.png │ │ │ ├── pastey.png │ │ │ ├── patreon-white.png │ │ │ ├── patreon.png │ │ │ ├── paypal.png │ │ │ ├── peanut.png │ │ │ ├── peertube.png │ │ │ ├── penpot-light.png │ │ │ ├── penpot.png │ │ │ ├── perlite.png │ │ │ ├── petio.png │ │ │ ├── pfsense.png │ │ │ ├── pgadmin.png │ │ │ ├── phantombot.png │ │ │ ├── phoneinfoga-light.png │ │ │ ├── phoneinfoga.png │ │ │ ├── phoscon-light.png │ │ │ ├── phoscon.png │ │ │ ├── photonix-light.png │ │ │ ├── photonix.png │ │ │ ├── photoprism.png │ │ │ ├── photostructure.png │ │ │ ├── photoview.png │ │ │ ├── php.png │ │ │ ├── phpipam.png │ │ │ ├── phpldapadmin.png │ │ │ ├── phpmyadmin.png │ │ │ ├── pi-alert.png │ │ │ ├── pi-hole-unbound.png │ │ │ ├── pi-hole.png │ │ │ ├── pia.png │ │ │ ├── piaware.png │ │ │ ├── picsur.png │ │ │ ├── pigallery2-light.png │ │ │ ├── pigallery2.png │ │ │ ├── pikvm-light.png │ │ │ ├── pikvm.png │ │ │ ├── pinchflat.png │ │ │ ├── pingdom.png │ │ │ ├── pingvin-share.png │ │ │ ├── pingvin.png │ │ │ ├── pinry.png │ │ │ ├── pinterest.png │ │ │ ├── pioneer-light.png │ │ │ ├── pioneer.png │ │ │ ├── pirate-proxy.png │ │ │ ├── pivpn.png │ │ │ ├── piwigo.png │ │ │ ├── pixelfed.png │ │ │ ├── planka.png │ │ │ ├── plant-it.png │ │ │ ├── plausible.png │ │ │ ├── pleroma.png │ │ │ ├── plesk-light.png │ │ │ ├── plesk.png │ │ │ ├── plex-alt-light.png │ │ │ ├── plex-alt.png │ │ │ ├── plex-meta-manager-light.png │ │ │ ├── plex-meta-manager.png │ │ │ ├── plex.png │ │ │ ├── plexdrive.png │ │ │ ├── plexrequests.png │ │ │ ├── plexripper.png │ │ │ ├── plume.png │ │ │ ├── pocketbase.png │ │ │ ├── podgrab.png │ │ │ ├── podify.png │ │ │ ├── podnapisi.png │ │ │ ├── policycontroller.png │ │ │ ├── poly.png │ │ │ ├── polywork.png │ │ │ ├── porkbun.png │ │ │ ├── portainer-alt.png │ │ │ ├── portainer.png │ │ │ ├── portus.png │ │ │ ├── poste.png │ │ │ ├── postgres.png │ │ │ ├── powerbi.png │ │ │ ├── powerdns.png │ │ │ ├── powerpanel.png │ │ │ ├── premium-mobile.png │ │ │ ├── prime-video-light.png │ │ │ ├── prime-video.png │ │ │ ├── printer.png │ │ │ ├── pritunl.png │ │ │ ├── privacyidea.png │ │ │ ├── private-internet-access.png │ │ │ ├── privatebin.png │ │ │ ├── projectsend.png │ │ │ ├── prometheus.png │ │ │ ├── proton-calendar.png │ │ │ ├── proton-drive.png │ │ │ ├── proton-mail.png │ │ │ ├── proton-vpn.png │ │ │ ├── prowlarr.png │ │ │ ├── proxmox-light.png │ │ │ ├── proxmox.png │ │ │ ├── prtg.png │ │ │ ├── prusa-research-light.png │ │ │ ├── prusa-research.png │ │ │ ├── psitransfer.png │ │ │ ├── pterodactyl.png │ │ │ ├── pufferpanel.png │ │ │ ├── purelymail.png │ │ │ ├── pushfish.png │ │ │ ├── pushover.png │ │ │ ├── putty.png │ │ │ ├── pwndrop-light.png │ │ │ ├── pwndrop.png │ │ │ ├── pwpush-light.png │ │ │ ├── pwpush.png │ │ │ ├── pydio.png │ │ │ ├── pyload.png │ │ │ ├── python.png │ │ │ ├── qbittorrent.png │ │ │ ├── qdirstat.png │ │ │ ├── qinglong.png │ │ │ ├── qnap-alt.png │ │ │ ├── qnap.png │ │ │ ├── quant-ux.png │ │ │ ├── questdb.png │ │ │ ├── quetre.png │ │ │ ├── qutebrowser.png │ │ │ ├── r.png │ │ │ ├── rabbitmq.png │ │ │ ├── radarr-light.png │ │ │ ├── radarr.png │ │ │ ├── radicale.png │ │ │ ├── rainloop-light.png │ │ │ ├── rainloop.png │ │ │ ├── rallly.png │ │ │ ├── rancher.png │ │ │ ├── raneto.png │ │ │ ├── raritan-light.png │ │ │ ├── raritan.png │ │ │ ├── raspberrymatic.png │ │ │ ├── raspberrypi.png │ │ │ ├── rathole.png │ │ │ ├── rclone.png │ │ │ ├── rdt-client.png │ │ │ ├── reactive-resume.png │ │ │ ├── readarr.png │ │ │ ├── readeck.png │ │ │ ├── readthedocs-light.png │ │ │ ├── readthedocs.png │ │ │ ├── real-debrid.png │ │ │ ├── realhosting.png │ │ │ ├── recalbox.png │ │ │ ├── recipesage.png │ │ │ ├── recipya.png │ │ │ ├── reddit.png │ │ │ ├── redis.png │ │ │ ├── rekor.png │ │ │ ├── remotely.png │ │ │ ├── requestly.png │ │ │ ├── requestrr.png │ │ │ ├── resiliosync.png │ │ │ ├── restic.png │ │ │ ├── rhasspy-light.png │ │ │ ├── rhasspy.png │ │ │ ├── rhodecode.png │ │ │ ├── rimgo-light.png │ │ │ ├── rimgo.png │ │ │ ├── riot.png │ │ │ ├── rocketchat.png │ │ │ ├── rocky-linux.png │ │ │ ├── romm.png │ │ │ ├── rompya.png │ │ │ ├── rook.png │ │ │ ├── roundcube.png │ │ │ ├── router.png │ │ │ ├── rpi-monitor.png │ │ │ ├── rport.png │ │ │ ├── rspamd.png │ │ │ ├── rss-bridge.png │ │ │ ├── rsshub.png │ │ │ ├── rstudio.png │ │ │ ├── rstudioserver.png │ │ │ ├── ruby.png │ │ │ ├── rumble.png │ │ │ ├── rundeck.png │ │ │ ├── runeaudio.png │ │ │ ├── runonflux.png │ │ │ ├── rust.png │ │ │ ├── rustdesk.png │ │ │ ├── rutorrent.png │ │ │ ├── ryot-light.png │ │ │ ├── ryot.png │ │ │ ├── sabnzbd-alt.png │ │ │ ├── sabnzbd.png │ │ │ ├── safari-ios.png │ │ │ ├── safari.png │ │ │ ├── sagemcom.png │ │ │ ├── salad.png │ │ │ ├── samsung-internet.png │ │ │ ├── sandstorm.png │ │ │ ├── scanservjs.png │ │ │ ├── screenconnect.png │ │ │ ├── scrutiny-light.png │ │ │ ├── scrutiny.png │ │ │ ├── scrypted.png │ │ │ ├── seafile.png │ │ │ ├── searx-light.png │ │ │ ├── searx.png │ │ │ ├── searxng.png │ │ │ ├── selfhosted-light.png │ │ │ ├── selfhosted.png │ │ │ ├── semaphore.png │ │ │ ├── sendinblue.png │ │ │ ├── sensu.png │ │ │ ├── sentry.png │ │ │ ├── seq.png │ │ │ ├── serpbear.png │ │ │ ├── servarr-light.png │ │ │ ├── servarr.png │ │ │ ├── serviio.png │ │ │ ├── session.png │ │ │ ├── sftpgo.png │ │ │ ├── shaarli.png │ │ │ ├── shell-light.png │ │ │ ├── shell-tips-light.png │ │ │ ├── shell-tips.png │ │ │ ├── shell.png │ │ │ ├── shellhub.png │ │ │ ├── shellngn.png │ │ │ ├── shelly.png │ │ │ ├── shinobi.png │ │ │ ├── shiori.png │ │ │ ├── shlink.png │ │ │ ├── shoko.png │ │ │ ├── sickbeard.png │ │ │ ├── sickchill.png │ │ │ ├── sickgear.png │ │ │ ├── signal-transparent.png │ │ │ ├── signal.png │ │ │ ├── sigstore.png │ │ │ ├── silverbullet.png │ │ │ ├── simplelogin.png │ │ │ ├── sinusbot.png │ │ │ ├── siyuan.png │ │ │ ├── skylink-fibernet.png │ │ │ ├── skype.png │ │ │ ├── slaanesh.png │ │ │ ├── slack.png │ │ │ ├── slice.png │ │ │ ├── slink-light.png │ │ │ ├── slink.png │ │ │ ├── slskd.png │ │ │ ├── smokeping.png │ │ │ ├── snapchat.png │ │ │ ├── snapdrop.png │ │ │ ├── snappymail-light.png │ │ │ ├── snappymail.png │ │ │ ├── snibox.png │ │ │ ├── snipe-it.png │ │ │ ├── snippetbox.png │ │ │ ├── sogo.png │ │ │ ├── solid-invoice.png │ │ │ ├── sonarqube.png │ │ │ ├── sonarr.png │ │ │ ├── sonatype-repository-light.png │ │ │ ├── sonatype-repository.png │ │ │ ├── sophos.png │ │ │ ├── soulseek.png │ │ │ ├── sourcegraph.png │ │ │ ├── spamassassin.png │ │ │ ├── sparkleshare.png │ │ │ ├── specter-desktop.png │ │ │ ├── speedtest-tracker-old.png │ │ │ ├── speedtest-tracker.png │ │ │ ├── sphinx-doc.png │ │ │ ├── sphinx-relay.png │ │ │ ├── sphinx.png │ │ │ ├── spiderfoot.png │ │ │ ├── splunk.png │ │ │ ├── spoolman.png │ │ │ ├── spotify.png │ │ │ ├── spotnet.png │ │ │ ├── sqlitebrowser.png │ │ │ ├── squeezebox-server.png │ │ │ ├── squidex.png │ │ │ ├── sshwifty.png │ │ │ ├── startpage.png │ │ │ ├── stash.png │ │ │ ├── statping-ng.png │ │ │ ├── statping.png │ │ │ ├── stb-proxy.png │ │ │ ├── steam.png │ │ │ ├── stirling-pdf.png │ │ │ ├── storj.png │ │ │ ├── storm.png │ │ │ ├── strapi.png │ │ │ ├── streama.png │ │ │ ├── substreamer.png │ │ │ ├── sunshine.png │ │ │ ├── supermicro.png │ │ │ ├── swarmpit.png │ │ │ ├── swift.png │ │ │ ├── swizzin.png │ │ │ ├── syft.png │ │ │ ├── symmetricom-light.png │ │ │ ├── symmetricom.png │ │ │ ├── sympa.png │ │ │ ├── syncany.png │ │ │ ├── synclounge-light.png │ │ │ ├── synclounge.png │ │ │ ├── syncthing.png │ │ │ ├── synology-audio-station.png │ │ │ ├── synology-calendar.png │ │ │ ├── synology-chat.png │ │ │ ├── synology-cloud-sync.png │ │ │ ├── synology-contacts.png │ │ │ ├── synology-document-viewer.png │ │ │ ├── synology-download-station.png │ │ │ ├── synology-drive-server.png │ │ │ ├── synology-drive.png │ │ │ ├── synology-dsm.png │ │ │ ├── synology-file-station.png │ │ │ ├── synology-mail-plus.png │ │ │ ├── synology-mail-station.png │ │ │ ├── synology-note-station.png │ │ │ ├── synology-office.png │ │ │ ├── synology-pdfviewer.png │ │ │ ├── synology-photo-station.png │ │ │ ├── synology-photos.png │ │ │ ├── synology-surveillance-station.png │ │ │ ├── synology-text-editor.png │ │ │ ├── synology-video-station.png │ │ │ ├── synology-webstation.png │ │ │ ├── synology.png │ │ │ ├── sysreptor.png │ │ │ ├── tacticalrmm.png │ │ │ ├── taiga.png │ │ │ ├── tailscale-light.png │ │ │ ├── tailscale.png │ │ │ ├── talos.png │ │ │ ├── tandoor.png │ │ │ ├── tandoorrecipes.png │ │ │ ├── tanoshi.png │ │ │ ├── tar1090.png │ │ │ ├── taskcafe.png │ │ │ ├── tasmoadmin.png │ │ │ ├── tasmota-light.png │ │ │ ├── tasmota.png │ │ │ ├── tautulli.png │ │ │ ├── tdarr.png │ │ │ ├── teamcity.png │ │ │ ├── teamspeak.png │ │ │ ├── technitium.png │ │ │ ├── teedy.png │ │ │ ├── telegraf.png │ │ │ ├── telegram.png │ │ │ ├── telekom.png │ │ │ ├── teleport.png │ │ │ ├── tenda.png │ │ │ ├── terminal.png │ │ │ ├── terraform.png │ │ │ ├── teslamate.png │ │ │ ├── thanos.png │ │ │ ├── the-pirate-bay.png │ │ │ ├── the-proxy-bay.png │ │ │ ├── theia-light.png │ │ │ ├── theia.png │ │ │ ├── thelounge.png │ │ │ ├── themepark.png │ │ │ ├── theodinproject.png │ │ │ ├── thingsboard.png │ │ │ ├── thunderbird.png │ │ │ ├── thunderhub-light.png │ │ │ ├── thunderhub.png │ │ │ ├── tiktok-light.png │ │ │ ├── tiktok.png │ │ │ ├── timemachines-light.png │ │ │ ├── timemachines.png │ │ │ ├── timetagger-light.png │ │ │ ├── timetagger.png │ │ │ ├── tinypilot.png │ │ │ ├── tinytinyrss.png │ │ │ ├── tipi.png │ │ │ ├── todoist.png │ │ │ ├── tooljet.png │ │ │ ├── tor.png │ │ │ ├── torrserver.png │ │ │ ├── tp-link.png │ │ │ ├── traccar.png │ │ │ ├── traefik-proxy.png │ │ │ ├── traefik.png │ │ │ ├── traggo.png │ │ │ ├── trakt.png │ │ │ ├── transmission.png │ │ │ ├── trash-guides.png │ │ │ ├── trilium.png │ │ │ ├── trivy.png │ │ │ ├── troddit.png │ │ │ ├── trudesk.png │ │ │ ├── truenas-core.png │ │ │ ├── truenas-enterprise.png │ │ │ ├── truenas-scale.png │ │ │ ├── truenas.png │ │ │ ├── tube-archivist-light.png │ │ │ ├── tube-archivist.png │ │ │ ├── tubesync.png │ │ │ ├── turbopack-light.png │ │ │ ├── turbopack.png │ │ │ ├── tux.png │ │ │ ├── tvheadend.png │ │ │ ├── tvp-vod.png │ │ │ ├── twingate-light.png │ │ │ ├── twingate.png │ │ │ ├── twitch.png │ │ │ ├── twitter.png │ │ │ ├── typescript.png │ │ │ ├── typo3.png │ │ │ ├── ubiquiti-networks.png │ │ │ ├── ubiquiti.png │ │ │ ├── ubooquity.png │ │ │ ├── ubuntu-alt.png │ │ │ ├── ubuntu.png │ │ │ ├── uc-browser.png │ │ │ ├── udemy.png │ │ │ ├── ultimate-guitar.png │ │ │ ├── umami-analytics-light.png │ │ │ ├── umami-analytics.png │ │ │ ├── umami-light.png │ │ │ ├── umami.png │ │ │ ├── umbrel.png │ │ │ ├── unifi-controller.png │ │ │ ├── unifi-protect.png │ │ │ ├── unifi.png │ │ │ ├── unimus.png │ │ │ ├── universal-media-server.png │ │ │ ├── unmanic.png │ │ │ ├── unraid-alt.png │ │ │ ├── unraid.png │ │ │ ├── untangle.png │ │ │ ├── updog.png │ │ │ ├── ups.png │ │ │ ├── upsnap.png │ │ │ ├── uptime-kuma.png │ │ │ ├── urbackup-server.png │ │ │ ├── urbackup.png │ │ │ ├── valetudo.png │ │ │ ├── vault-light.png │ │ │ ├── vault.png │ │ │ ├── vaultwarden-light.png │ │ │ ├── vaultwarden.png │ │ │ ├── veeam.png │ │ │ ├── vercel-light.png │ │ │ ├── vercel.png │ │ │ ├── verizon.png │ │ │ ├── vi.png │ │ │ ├── viewtube.png │ │ │ ├── vikunja.png │ │ │ ├── virgin-media.png │ │ │ ├── virtualmin.png │ │ │ ├── virtualradarserver.png │ │ │ ├── viseron.png │ │ │ ├── vivaldi.png │ │ │ ├── vmware-esxi.png │ │ │ ├── vmware-horizon.png │ │ │ ├── vmware-vcenter.png │ │ │ ├── vmware-workstation.png │ │ │ ├── vmware.png │ │ │ ├── voip-info.png │ │ │ ├── voip-ms.png │ │ │ ├── volumio-light.png │ │ │ ├── volumio.png │ │ │ ├── voron.png │ │ │ ├── vscode.png │ │ │ ├── vultr.png │ │ │ ├── vuplus.png │ │ │ ├── wakapi.png │ │ │ ├── wakatime-light.png │ │ │ ├── wakatime.png │ │ │ ├── wallabag.png │ │ │ ├── wallos.png │ │ │ ├── wanikani.png │ │ │ ├── ward.png │ │ │ ├── warpgate.png │ │ │ ├── watcharr.png │ │ │ ├── watcher.png │ │ │ ├── watchtower.png │ │ │ ├── watchyourlan.png │ │ │ ├── waze.png │ │ │ ├── wazuh-opaque.png │ │ │ ├── wazuh.png │ │ │ ├── wbo.png │ │ │ ├── web-check.png │ │ │ ├── web-whisper.png │ │ │ ├── webdav.png │ │ │ ├── webhook.png │ │ │ ├── webhookd.png │ │ │ ├── webkit.png │ │ │ ├── webmin.png │ │ │ ├── webssh-light.jpg │ │ │ ├── webssh.jpg │ │ │ ├── webtools.png │ │ │ ├── webtop.png │ │ │ ├── webtorrent.png │ │ │ ├── webtrees.png │ │ │ ├── wekan.png │ │ │ ├── wetty.png │ │ │ ├── wg-gen-web-light.png │ │ │ ├── wg-gen-web.png │ │ │ ├── wger.png │ │ │ ├── whats-up-docker-light.png │ │ │ ├── whats-up-docker.png │ │ │ ├── whatsapp.png │ │ │ ├── whisparr.png │ │ │ ├── whoogle.png │ │ │ ├── whooglesearch.png │ │ │ ├── wiki-text.png │ │ │ ├── wikijs-full.png │ │ │ ├── wikijs.png │ │ │ ├── windmill.png │ │ │ ├── windows-10.png │ │ │ ├── windows-11.png │ │ │ ├── windows-7.png │ │ │ ├── windows-95.png │ │ │ ├── windows-98.png │ │ │ ├── windows-admin-center.jpg │ │ │ ├── windows-vista.png │ │ │ ├── windows-xp.png │ │ │ ├── wireguard.png │ │ │ ├── wizarr.png │ │ │ ├── wled.png │ │ │ ├── wolfi-light.png │ │ │ ├── wolfi.png │ │ │ ├── woodpecker-ci-light.png │ │ │ ├── woodpecker-ci.png │ │ │ ├── wordpress-light.png │ │ │ ├── wordpress.png │ │ │ ├── workadventure.png │ │ │ ├── wownero.png │ │ │ ├── wud-light.png │ │ │ ├── wud.png │ │ │ ├── x-light.png │ │ │ ├── x.png │ │ │ ├── xbackbone.png │ │ │ ├── xbrowsersync.png │ │ │ ├── xcp-ng.png │ │ │ ├── xen-orchestra.png │ │ │ ├── xigmanas.png │ │ │ ├── xmr.png │ │ │ ├── xmrig.png │ │ │ ├── xteve.png │ │ │ ├── xwiki.png │ │ │ ├── yaade.png │ │ │ ├── yacht-light.png │ │ │ ├── yacht.png │ │ │ ├── yahoo-mail.png │ │ │ ├── yahoo.png │ │ │ ├── yandex.png │ │ │ ├── yarn-social.png │ │ │ ├── ycombinator.png │ │ │ ├── ymarks.png │ │ │ ├── ynab.png │ │ │ ├── your-spotify.png │ │ │ ├── yourls.png │ │ │ ├── youtube-kids.png │ │ │ ├── youtube-music.png │ │ │ ├── youtube.png │ │ │ ├── youtubedl.png │ │ │ ├── yts.png │ │ │ ├── yunohost-light.png │ │ │ ├── yunohost.png │ │ │ ├── zabbix.png │ │ │ ├── zabka.png │ │ │ ├── zammad.png │ │ │ ├── zendesk.png │ │ │ ├── zerotier.png │ │ │ ├── zigbee2mqtt.png │ │ │ ├── zipline-light.png │ │ │ ├── zipline.png │ │ │ ├── zitadel-light.png │ │ │ ├── zitadel.png │ │ │ ├── znc.png │ │ │ ├── zohomail.png │ │ │ ├── zoneminder.png │ │ │ ├── zoom-alt.png │ │ │ ├── zoom.png │ │ │ ├── zoraxy.png │ │ │ ├── zulip.png │ │ │ ├── zwavejs2mqtt.png │ │ │ ├── zyxel-communications.png │ │ │ └── zyxel-networks.png │ │ ├── error.png │ │ ├── operatingsystems │ │ │ ├── AIX.png │ │ │ ├── AMG.png │ │ │ ├── AND.png │ │ │ ├── ARL.png │ │ │ ├── ATV.png │ │ │ ├── BEO.png │ │ │ ├── BLB.png │ │ │ ├── BSD.png │ │ │ ├── BTR.png │ │ │ ├── CAI.png │ │ │ ├── CES.png │ │ │ ├── COS.png │ │ │ ├── CYN.png │ │ │ ├── DEB.png │ │ │ ├── DEE.png │ │ │ ├── DFB.png │ │ │ ├── FED.png │ │ │ ├── FIR.png │ │ │ ├── FOS.png │ │ │ ├── FYD.png │ │ │ ├── GNT.png │ │ │ ├── GTV.png │ │ │ ├── HAI.png │ │ │ ├── HAR.png │ │ │ ├── HPX.png │ │ │ ├── IOS.png │ │ │ ├── IPA.png │ │ │ ├── KBT.png │ │ │ ├── KNO.png │ │ │ ├── KOS.png │ │ │ ├── LBT.png │ │ │ ├── LIN.png │ │ │ ├── MAC.png │ │ │ ├── MAE.png │ │ │ ├── MAG.png │ │ │ ├── MDR.png │ │ │ ├── MIN.png │ │ │ ├── MOR.png │ │ │ ├── NBS.png │ │ │ ├── NDS.png │ │ │ ├── OBS.png │ │ │ ├── OS2.png │ │ │ ├── OWR.png │ │ │ ├── PCL.png │ │ │ ├── POS.png │ │ │ ├── PS3.png │ │ │ ├── PSP.png │ │ │ ├── QNX.png │ │ │ ├── RAS.png │ │ │ ├── REM.png │ │ │ ├── REX.png │ │ │ ├── RHT.png │ │ │ ├── ROK.png │ │ │ ├── ROS.png │ │ │ ├── RSO.png │ │ │ ├── S40.png │ │ │ ├── S60.png │ │ │ ├── SAB.png │ │ │ ├── SAF.png │ │ │ ├── SBA.png │ │ │ ├── SLW.png │ │ │ ├── SMG.png │ │ │ ├── SOS.png │ │ │ ├── SSE.png │ │ │ ├── SY3.png │ │ │ ├── SYL.png │ │ │ ├── SYM.png │ │ │ ├── SYS.png │ │ │ ├── TDX.png │ │ │ ├── TIZ.png │ │ │ ├── UBT.png │ │ │ ├── WAS.png │ │ │ ├── WCE.png │ │ │ ├── WHS.png │ │ │ ├── WII.png │ │ │ ├── WIN.png │ │ │ ├── WIO.png │ │ │ ├── WMO.png │ │ │ ├── WOS.png │ │ │ ├── WPH.png │ │ │ ├── WRT.png │ │ │ ├── XBT.png │ │ │ ├── XBX.png │ │ │ └── YNS.png │ │ ├── oslist.json │ │ └── user.png │ ├── js │ │ ├── domain.js │ │ ├── non-domain.js │ │ ├── prism-ansible.js │ │ └── script.js │ ├── logo │ │ ├── deployaroo_text_darkgrey.png │ │ ├── deployaroo_text_lightgrey.png │ │ ├── deployaroo_text_white.png │ │ └── deployaroo_white.ico │ └── vendor │ │ ├── axios │ │ └── axios.min.js │ │ ├── bootstrap-5.3.3-dist │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── datatables │ │ ├── dataTables.bootstrap5.min.css │ │ ├── dataTables.bootstrap5.min.js │ │ └── jquery.dataTables.min.js │ │ ├── fontawesome5 │ │ ├── LICENSE.md │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ ├── js │ │ │ ├── all.js │ │ │ ├── all.min.js │ │ │ ├── brands.js │ │ │ ├── brands.min.js │ │ │ ├── fontawesome.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.js │ │ │ ├── regular.min.js │ │ │ ├── solid.js │ │ │ ├── solid.min.js │ │ │ ├── v4-shims.js │ │ │ └── v4-shims.min.js │ │ ├── less │ │ │ ├── _animated.less │ │ │ ├── _bordered-pulled.less │ │ │ ├── _core.less │ │ │ ├── _fixed-width.less │ │ │ ├── _icons.less │ │ │ ├── _larger.less │ │ │ ├── _list.less │ │ │ ├── _mixins.less │ │ │ ├── _rotated-flipped.less │ │ │ ├── _screen-reader.less │ │ │ ├── _shims.less │ │ │ ├── _stacked.less │ │ │ ├── _variables.less │ │ │ ├── brands.less │ │ │ ├── fontawesome.less │ │ │ ├── regular.less │ │ │ ├── solid.less │ │ │ └── v4-shims.less │ │ ├── metadata │ │ │ ├── categories.yml │ │ │ ├── icons.json │ │ │ ├── icons.yml │ │ │ ├── shims.json │ │ │ ├── shims.yml │ │ │ └── sponsors.yml │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adobe.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── ad.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── air-freshener.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── allergies.svg │ │ │ │ ├── ambulance.svg │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── haykal.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── home.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── journal-whills.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── low-vision.svg │ │ │ │ ├── luggage-cart.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.svg │ │ │ │ ├── map-marked-alt.svg │ │ │ │ ├── map-marked.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-signs.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── pastafarianism.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-alt.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poll-h.svg │ │ │ │ ├── poll.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── portrait.svg │ │ │ │ ├── pound-sign.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── pray.svg │ │ │ │ ├── praying-hands.svg │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── snowboarding.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-alt.svg │ │ │ │ ├── store.svg │ │ │ │ ├── stream.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── swatchbook.svg │ │ │ │ ├── swimmer.svg │ │ │ │ ├── swimming-pool.svg │ │ │ │ ├── synagogue.svg │ │ │ │ ├── sync-alt.svg │ │ │ │ ├── sync.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── table-tennis.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-alt.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tablets.svg │ │ │ │ ├── tachometer-alt.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── th-large.svg │ │ │ │ ├── th-list.svg │ │ │ │ ├── th.svg │ │ │ │ ├── theater-masks.svg │ │ │ │ ├── thermometer-empty.svg │ │ │ │ ├── thermometer-full.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-alt-slash.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-cog.svg │ │ │ │ ├── user-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── highlightjs11.2.0 │ │ ├── highlight.min.js │ │ └── monokai.min.css │ │ ├── highlightjs11.5.1 │ │ ├── default.min.css │ │ └── highlight.min.js │ │ ├── jquery3 │ │ ├── LICENSE.md │ │ └── jquery-3.4.1.min.js │ │ ├── jspdf │ │ ├── jspdf.plugin.autotable.min.js │ │ └── jspdf.umd.min.js │ │ ├── prism-1.27.0 │ │ ├── css │ │ │ └── prism-tomorrow.min.css │ │ └── js │ │ │ ├── prism-bash.min.js │ │ │ └── prism.min.js │ │ └── toastr │ │ ├── toastr.css │ │ ├── toastr.js.map │ │ ├── toastr.min.css │ │ └── toastr.min.js ├── templates │ ├── accounts │ │ └── login.html │ ├── error │ │ ├── 403.html │ │ ├── 404.html │ │ └── 500.html │ ├── home │ │ ├── add_network_domain.html │ │ ├── add_network_nondomain.html │ │ ├── generic │ │ │ ├── domain.html │ │ │ └── non-domain.html │ │ ├── history.html │ │ ├── index.html │ │ ├── logs.html │ │ ├── settings.html │ │ └── settings │ │ │ ├── backup_tab.html │ │ │ ├── default_vm_tab.html │ │ │ ├── general_tab.html │ │ │ ├── users_tab.html │ │ │ ├── vm_images_tab.html │ │ │ └── vmware_tab.html │ ├── includes │ │ ├── domain-documentation.html │ │ ├── domain-form.html │ │ ├── domain-modals.html │ │ ├── footer-login.html │ │ ├── navbar.html │ │ ├── non-domain-documentation.html │ │ ├── non-domain-form.html │ │ ├── non-domain-modals.html │ │ ├── scripts.html │ │ ├── send_client_machine_info.html │ │ ├── sidebar.html │ │ ├── staged-vms-panel.html │ │ └── toastr.html │ └── layouts │ │ ├── base-error.html │ │ ├── base-nonav.html │ │ └── base.html ├── utils │ └── logging.py └── vmware │ ├── __init__.py │ ├── routes.py │ └── util.py ├── docker-compose.yml.example ├── generate_encryption_key.py ├── nginx └── app.conf ├── requirements.txt └── run.py /Makefile: -------------------------------------------------------------------------------- 1 | 2 | build: 3 | docker-compose up --build -d 4 | 5 | clean: 6 | docker-compose down 7 | docker system prune -fa -------------------------------------------------------------------------------- /apps/auth/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Blueprint 2 | 3 | blueprint = Blueprint( 4 | 'auth_blueprint', 5 | __name__, 6 | url_prefix='' 7 | ) 8 | -------------------------------------------------------------------------------- /apps/settings/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Blueprint 2 | 3 | blueprint = Blueprint( 4 | 'settings_blueprint', 5 | __name__, 6 | url_prefix='' 7 | ) 8 | -------------------------------------------------------------------------------- /apps/static/font/Lato-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/font/Lato-Regular.eot -------------------------------------------------------------------------------- /apps/static/font/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/font/Lato-Regular.ttf -------------------------------------------------------------------------------- /apps/static/font/Lato-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/font/Lato-Regular.woff -------------------------------------------------------------------------------- /apps/static/font/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/font/lato-regular.woff2 -------------------------------------------------------------------------------- /apps/static/images/applications/3cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/3cx.png -------------------------------------------------------------------------------- /apps/static/images/applications/5etools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/5etools.png -------------------------------------------------------------------------------- /apps/static/images/applications/act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/act.png -------------------------------------------------------------------------------- /apps/static/images/applications/actual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/actual.png -------------------------------------------------------------------------------- /apps/static/images/applications/adblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/adblock.png -------------------------------------------------------------------------------- /apps/static/images/applications/adm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/adm.png -------------------------------------------------------------------------------- /apps/static/images/applications/adminer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/adminer.png -------------------------------------------------------------------------------- /apps/static/images/applications/airsonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/airsonic.png -------------------------------------------------------------------------------- /apps/static/images/applications/airtel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/airtel.png -------------------------------------------------------------------------------- /apps/static/images/applications/airvpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/airvpn.png -------------------------------------------------------------------------------- /apps/static/images/applications/alarmpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/alarmpi.png -------------------------------------------------------------------------------- /apps/static/images/applications/algovpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/algovpn.png -------------------------------------------------------------------------------- /apps/static/images/applications/alloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/alloy.png -------------------------------------------------------------------------------- /apps/static/images/applications/alltube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/alltube.png -------------------------------------------------------------------------------- /apps/static/images/applications/alma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/alma.png -------------------------------------------------------------------------------- /apps/static/images/applications/alpine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/alpine.png -------------------------------------------------------------------------------- /apps/static/images/applications/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/amazon.png -------------------------------------------------------------------------------- /apps/static/images/applications/amcrest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/amcrest.png -------------------------------------------------------------------------------- /apps/static/images/applications/amd-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/amd-light.png -------------------------------------------------------------------------------- /apps/static/images/applications/amd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/amd.png -------------------------------------------------------------------------------- /apps/static/images/applications/ami-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ami-alt.png -------------------------------------------------------------------------------- /apps/static/images/applications/ami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ami.png -------------------------------------------------------------------------------- /apps/static/images/applications/amp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/amp.png -------------------------------------------------------------------------------- /apps/static/images/applications/ampache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ampache.png -------------------------------------------------------------------------------- /apps/static/images/applications/amvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/amvd.png -------------------------------------------------------------------------------- /apps/static/images/applications/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/android.png -------------------------------------------------------------------------------- /apps/static/images/applications/anonaddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/anonaddy.png -------------------------------------------------------------------------------- /apps/static/images/applications/ansible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ansible.png -------------------------------------------------------------------------------- /apps/static/images/applications/apache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/apache.png -------------------------------------------------------------------------------- /apps/static/images/applications/apc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/apc.png -------------------------------------------------------------------------------- /apps/static/images/applications/apiscp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/apiscp.png -------------------------------------------------------------------------------- /apps/static/images/applications/appdaemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/appdaemon.png -------------------------------------------------------------------------------- /apps/static/images/applications/apple-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/apple-alt.png -------------------------------------------------------------------------------- /apps/static/images/applications/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/apple.png -------------------------------------------------------------------------------- /apps/static/images/applications/apprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/apprise.png -------------------------------------------------------------------------------- /apps/static/images/applications/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/arch.png -------------------------------------------------------------------------------- /apps/static/images/applications/arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/arduino.png -------------------------------------------------------------------------------- /apps/static/images/applications/arggocd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/arggocd.png -------------------------------------------------------------------------------- /apps/static/images/applications/argocd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/argocd.png -------------------------------------------------------------------------------- /apps/static/images/applications/ariang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ariang.png -------------------------------------------------------------------------------- /apps/static/images/applications/arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/arm.png -------------------------------------------------------------------------------- /apps/static/images/applications/arris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/arris.png -------------------------------------------------------------------------------- /apps/static/images/applications/aruba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/aruba.png -------------------------------------------------------------------------------- /apps/static/images/applications/asana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/asana.png -------------------------------------------------------------------------------- /apps/static/images/applications/asciinema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/asciinema.png -------------------------------------------------------------------------------- /apps/static/images/applications/assetgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/assetgrid.png -------------------------------------------------------------------------------- /apps/static/images/applications/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/asterisk.png -------------------------------------------------------------------------------- /apps/static/images/applications/astral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/astral.png -------------------------------------------------------------------------------- /apps/static/images/applications/asus-rog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/asus-rog.png -------------------------------------------------------------------------------- /apps/static/images/applications/asus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/asus.png -------------------------------------------------------------------------------- /apps/static/images/applications/asustor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/asustor.png -------------------------------------------------------------------------------- /apps/static/images/applications/at-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/at-t.png -------------------------------------------------------------------------------- /apps/static/images/applications/atlassian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/atlassian.png -------------------------------------------------------------------------------- /apps/static/images/applications/audacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/audacity.png -------------------------------------------------------------------------------- /apps/static/images/applications/auracast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/auracast.png -------------------------------------------------------------------------------- /apps/static/images/applications/authelia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/authelia.png -------------------------------------------------------------------------------- /apps/static/images/applications/authentik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/authentik.png -------------------------------------------------------------------------------- /apps/static/images/applications/autobrr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/autobrr.png -------------------------------------------------------------------------------- /apps/static/images/applications/avigilon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/avigilon.png -------------------------------------------------------------------------------- /apps/static/images/applications/aws-ecs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/aws-ecs.png -------------------------------------------------------------------------------- /apps/static/images/applications/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/aws.png -------------------------------------------------------------------------------- /apps/static/images/applications/awwesome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/awwesome.png -------------------------------------------------------------------------------- /apps/static/images/applications/awx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/awx.png -------------------------------------------------------------------------------- /apps/static/images/applications/axis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/axis.png -------------------------------------------------------------------------------- /apps/static/images/applications/azuracast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/azuracast.png -------------------------------------------------------------------------------- /apps/static/images/applications/azure-dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/azure-dns.png -------------------------------------------------------------------------------- /apps/static/images/applications/azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/azure.png -------------------------------------------------------------------------------- /apps/static/images/applications/babybuddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/babybuddy.png -------------------------------------------------------------------------------- /apps/static/images/applications/backblaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/backblaze.png -------------------------------------------------------------------------------- /apps/static/images/applications/bacula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/bacula.png -------------------------------------------------------------------------------- /apps/static/images/applications/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/badge.png -------------------------------------------------------------------------------- /apps/static/images/applications/baikal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/baikal.png -------------------------------------------------------------------------------- /apps/static/images/applications/baserow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/baserow.png -------------------------------------------------------------------------------- /apps/static/images/applications/basilisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/basilisk.png -------------------------------------------------------------------------------- /apps/static/images/applications/bazarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/bazarr.png -------------------------------------------------------------------------------- /apps/static/images/applications/beef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/beef.png -------------------------------------------------------------------------------- /apps/static/images/applications/beets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/beets.png -------------------------------------------------------------------------------- /apps/static/images/applications/benotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/benotes.png -------------------------------------------------------------------------------- /apps/static/images/applications/betanin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/betanin.png -------------------------------------------------------------------------------- /apps/static/images/applications/biedronka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/biedronka.png -------------------------------------------------------------------------------- /apps/static/images/applications/bing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/bing.png -------------------------------------------------------------------------------- /apps/static/images/applications/birdnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/birdnet.png -------------------------------------------------------------------------------- /apps/static/images/applications/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/bitcoin.png -------------------------------------------------------------------------------- /apps/static/images/applications/bithumen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/bithumen.png -------------------------------------------------------------------------------- /apps/static/images/applications/bitwarden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/bitwarden.png -------------------------------------------------------------------------------- /apps/static/images/applications/blocky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/blocky.png -------------------------------------------------------------------------------- /apps/static/images/applications/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/blogger.png -------------------------------------------------------------------------------- /apps/static/images/applications/blue-iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/blue-iris.png -------------------------------------------------------------------------------- /apps/static/images/applications/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/bluetooth.png -------------------------------------------------------------------------------- /apps/static/images/applications/booksonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/booksonic.png -------------------------------------------------------------------------------- /apps/static/images/applications/bookstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/bookstack.png -------------------------------------------------------------------------------- /apps/static/images/applications/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/bootstrap.png -------------------------------------------------------------------------------- /apps/static/images/applications/borg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/borg.png -------------------------------------------------------------------------------- /apps/static/images/applications/boundary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/boundary.png -------------------------------------------------------------------------------- /apps/static/images/applications/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/box.png -------------------------------------------------------------------------------- /apps/static/images/applications/brave-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/brave-dev.png -------------------------------------------------------------------------------- /apps/static/images/applications/brave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/brave.png -------------------------------------------------------------------------------- /apps/static/images/applications/brewpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/brewpi.png -------------------------------------------------------------------------------- /apps/static/images/applications/brillcam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/brillcam.png -------------------------------------------------------------------------------- /apps/static/images/applications/brocade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/brocade.png -------------------------------------------------------------------------------- /apps/static/images/applications/brother.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/brother.png -------------------------------------------------------------------------------- /apps/static/images/applications/browsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/browsh.png -------------------------------------------------------------------------------- /apps/static/images/applications/buddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/buddy.png -------------------------------------------------------------------------------- /apps/static/images/applications/budibase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/budibase.png -------------------------------------------------------------------------------- /apps/static/images/applications/buffalo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/buffalo.png -------------------------------------------------------------------------------- /apps/static/images/applications/bunkerweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/bunkerweb.png -------------------------------------------------------------------------------- /apps/static/images/applications/buxfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/buxfer.png -------------------------------------------------------------------------------- /apps/static/images/applications/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/c.png -------------------------------------------------------------------------------- /apps/static/images/applications/cabot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cabot.png -------------------------------------------------------------------------------- /apps/static/images/applications/cacti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cacti.png -------------------------------------------------------------------------------- /apps/static/images/applications/caddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/caddy.png -------------------------------------------------------------------------------- /apps/static/images/applications/cadvisor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cadvisor.png -------------------------------------------------------------------------------- /apps/static/images/applications/calckey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/calckey.png -------------------------------------------------------------------------------- /apps/static/images/applications/caldera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/caldera.png -------------------------------------------------------------------------------- /apps/static/images/applications/calibre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/calibre.png -------------------------------------------------------------------------------- /apps/static/images/applications/camera-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/camera-ui.png -------------------------------------------------------------------------------- /apps/static/images/applications/canonical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/canonical.png -------------------------------------------------------------------------------- /apps/static/images/applications/cardigann.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cardigann.png -------------------------------------------------------------------------------- /apps/static/images/applications/carrefour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/carrefour.png -------------------------------------------------------------------------------- /apps/static/images/applications/casaos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/casaos.png -------------------------------------------------------------------------------- /apps/static/images/applications/castopod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/castopod.png -------------------------------------------------------------------------------- /apps/static/images/applications/cc-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cc-light.png -------------------------------------------------------------------------------- /apps/static/images/applications/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cc.png -------------------------------------------------------------------------------- /apps/static/images/applications/centos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/centos.png -------------------------------------------------------------------------------- /apps/static/images/applications/ceph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ceph.png -------------------------------------------------------------------------------- /apps/static/images/applications/channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/channels.png -------------------------------------------------------------------------------- /apps/static/images/applications/chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/chatgpt.png -------------------------------------------------------------------------------- /apps/static/images/applications/checkmk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/checkmk.png -------------------------------------------------------------------------------- /apps/static/images/applications/cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cherry.png -------------------------------------------------------------------------------- /apps/static/images/applications/chevereto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/chevereto.png -------------------------------------------------------------------------------- /apps/static/images/applications/chowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/chowdown.png -------------------------------------------------------------------------------- /apps/static/images/applications/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/chrome.png -------------------------------------------------------------------------------- /apps/static/images/applications/chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/chromium.png -------------------------------------------------------------------------------- /apps/static/images/applications/cilium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cilium.png -------------------------------------------------------------------------------- /apps/static/images/applications/cinny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cinny.png -------------------------------------------------------------------------------- /apps/static/images/applications/cisco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cisco.png -------------------------------------------------------------------------------- /apps/static/images/applications/clash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/clash.png -------------------------------------------------------------------------------- /apps/static/images/applications/clashX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/clashX.png -------------------------------------------------------------------------------- /apps/static/images/applications/cloud66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cloud66.png -------------------------------------------------------------------------------- /apps/static/images/applications/cloud9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cloud9.png -------------------------------------------------------------------------------- /apps/static/images/applications/cloudcmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cloudcmd.png -------------------------------------------------------------------------------- /apps/static/images/applications/cockpit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cockpit.png -------------------------------------------------------------------------------- /apps/static/images/applications/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/code.png -------------------------------------------------------------------------------- /apps/static/images/applications/codeberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/codeberg.png -------------------------------------------------------------------------------- /apps/static/images/applications/coder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/coder.png -------------------------------------------------------------------------------- /apps/static/images/applications/codestats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/codestats.png -------------------------------------------------------------------------------- /apps/static/images/applications/codex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/codex.png -------------------------------------------------------------------------------- /apps/static/images/applications/codimd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/codimd.png -------------------------------------------------------------------------------- /apps/static/images/applications/commafeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/commafeed.png -------------------------------------------------------------------------------- /apps/static/images/applications/concourse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/concourse.png -------------------------------------------------------------------------------- /apps/static/images/applications/consul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/consul.png -------------------------------------------------------------------------------- /apps/static/images/applications/contabo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/contabo.png -------------------------------------------------------------------------------- /apps/static/images/applications/coolify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/coolify.png -------------------------------------------------------------------------------- /apps/static/images/applications/coredns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/coredns.png -------------------------------------------------------------------------------- /apps/static/images/applications/coreos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/coreos.png -------------------------------------------------------------------------------- /apps/static/images/applications/cosign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cosign.png -------------------------------------------------------------------------------- /apps/static/images/applications/costco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/costco.png -------------------------------------------------------------------------------- /apps/static/images/applications/cozy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cozy.png -------------------------------------------------------------------------------- /apps/static/images/applications/cpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cpanel.png -------------------------------------------------------------------------------- /apps/static/images/applications/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cpp.png -------------------------------------------------------------------------------- /apps/static/images/applications/cribl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cribl.png -------------------------------------------------------------------------------- /apps/static/images/applications/crowdsec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/crowdsec.png -------------------------------------------------------------------------------- /apps/static/images/applications/cryptpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cryptpad.png -------------------------------------------------------------------------------- /apps/static/images/applications/csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/csharp.png -------------------------------------------------------------------------------- /apps/static/images/applications/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/css.png -------------------------------------------------------------------------------- /apps/static/images/applications/cups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cups.png -------------------------------------------------------------------------------- /apps/static/images/applications/cura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cura.png -------------------------------------------------------------------------------- /apps/static/images/applications/cyberchef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/cyberchef.png -------------------------------------------------------------------------------- /apps/static/images/applications/d-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/d-link.png -------------------------------------------------------------------------------- /apps/static/images/applications/dahua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dahua.png -------------------------------------------------------------------------------- /apps/static/images/applications/dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dart.png -------------------------------------------------------------------------------- /apps/static/images/applications/dashdot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dashdot.png -------------------------------------------------------------------------------- /apps/static/images/applications/dashy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dashy.png -------------------------------------------------------------------------------- /apps/static/images/applications/datadog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/datadog.png -------------------------------------------------------------------------------- /apps/static/images/applications/dc-os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dc-os.png -------------------------------------------------------------------------------- /apps/static/images/applications/dd-wrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dd-wrt.png -------------------------------------------------------------------------------- /apps/static/images/applications/debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/debian.png -------------------------------------------------------------------------------- /apps/static/images/applications/deemix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/deemix.png -------------------------------------------------------------------------------- /apps/static/images/applications/dell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dell.png -------------------------------------------------------------------------------- /apps/static/images/applications/deluge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/deluge.png -------------------------------------------------------------------------------- /apps/static/images/applications/deno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/deno.png -------------------------------------------------------------------------------- /apps/static/images/applications/denon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/denon.png -------------------------------------------------------------------------------- /apps/static/images/applications/devtooly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/devtooly.png -------------------------------------------------------------------------------- /apps/static/images/applications/dietpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dietpi.png -------------------------------------------------------------------------------- /apps/static/images/applications/dillinger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dillinger.png -------------------------------------------------------------------------------- /apps/static/images/applications/dim-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dim-light.png -------------------------------------------------------------------------------- /apps/static/images/applications/dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dim.png -------------------------------------------------------------------------------- /apps/static/images/applications/directus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/directus.png -------------------------------------------------------------------------------- /apps/static/images/applications/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/discord.png -------------------------------------------------------------------------------- /apps/static/images/applications/discourse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/discourse.png -------------------------------------------------------------------------------- /apps/static/images/applications/diskover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/diskover.png -------------------------------------------------------------------------------- /apps/static/images/applications/diun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/diun.png -------------------------------------------------------------------------------- /apps/static/images/applications/diyhue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/diyhue.png -------------------------------------------------------------------------------- /apps/static/images/applications/dlna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dlna.png -------------------------------------------------------------------------------- /apps/static/images/applications/docker-gc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/docker-gc.png -------------------------------------------------------------------------------- /apps/static/images/applications/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/docker.png -------------------------------------------------------------------------------- /apps/static/images/applications/dockge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dockge.png -------------------------------------------------------------------------------- /apps/static/images/applications/docsify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/docsify.png -------------------------------------------------------------------------------- /apps/static/images/applications/docspell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/docspell.png -------------------------------------------------------------------------------- /apps/static/images/applications/docuseal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/docuseal.png -------------------------------------------------------------------------------- /apps/static/images/applications/dogpile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dogpile.png -------------------------------------------------------------------------------- /apps/static/images/applications/dokuwiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dokuwiki.png -------------------------------------------------------------------------------- /apps/static/images/applications/dolibarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dolibarr.png -------------------------------------------------------------------------------- /apps/static/images/applications/dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dolphin.png -------------------------------------------------------------------------------- /apps/static/images/applications/domainmod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/domainmod.png -------------------------------------------------------------------------------- /apps/static/images/applications/domoticz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/domoticz.png -------------------------------------------------------------------------------- /apps/static/images/applications/dovecot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dovecot.png -------------------------------------------------------------------------------- /apps/static/images/applications/dozzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/dozzle.png -------------------------------------------------------------------------------- /apps/static/images/applications/draw-io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/draw-io.png -------------------------------------------------------------------------------- /apps/static/images/applications/draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/draw.png -------------------------------------------------------------------------------- /apps/static/images/applications/draytek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/draytek.png -------------------------------------------------------------------------------- /apps/static/images/applications/drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/drone.png -------------------------------------------------------------------------------- /apps/static/images/applications/droppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/droppy.png -------------------------------------------------------------------------------- /apps/static/images/applications/duckdns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/duckdns.png -------------------------------------------------------------------------------- /apps/static/images/applications/duo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/duo.png -------------------------------------------------------------------------------- /apps/static/images/applications/duplicacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/duplicacy.png -------------------------------------------------------------------------------- /apps/static/images/applications/duplicati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/duplicati.png -------------------------------------------------------------------------------- /apps/static/images/applications/easy-gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/easy-gate.png -------------------------------------------------------------------------------- /apps/static/images/applications/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ebay.png -------------------------------------------------------------------------------- /apps/static/images/applications/eblocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/eblocker.png -------------------------------------------------------------------------------- /apps/static/images/applications/edge-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/edge-dev.png -------------------------------------------------------------------------------- /apps/static/images/applications/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/edge.png -------------------------------------------------------------------------------- /apps/static/images/applications/edgeos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/edgeos.png -------------------------------------------------------------------------------- /apps/static/images/applications/elastic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/elastic.png -------------------------------------------------------------------------------- /apps/static/images/applications/electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/electron.png -------------------------------------------------------------------------------- /apps/static/images/applications/element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/element.png -------------------------------------------------------------------------------- /apps/static/images/applications/emacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/emacs.png -------------------------------------------------------------------------------- /apps/static/images/applications/emby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/emby.png -------------------------------------------------------------------------------- /apps/static/images/applications/embystat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/embystat.png -------------------------------------------------------------------------------- /apps/static/images/applications/emq-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/emq-light.png -------------------------------------------------------------------------------- /apps/static/images/applications/emq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/emq.png -------------------------------------------------------------------------------- /apps/static/images/applications/emqx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/emqx.png -------------------------------------------------------------------------------- /apps/static/images/applications/enbizcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/enbizcard.png -------------------------------------------------------------------------------- /apps/static/images/applications/ersatztv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ersatztv.png -------------------------------------------------------------------------------- /apps/static/images/applications/erste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/erste.png -------------------------------------------------------------------------------- /apps/static/images/applications/esphome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/esphome.png -------------------------------------------------------------------------------- /apps/static/images/applications/espressif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/espressif.png -------------------------------------------------------------------------------- /apps/static/images/applications/etcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/etcd.png -------------------------------------------------------------------------------- /apps/static/images/applications/etesync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/etesync.png -------------------------------------------------------------------------------- /apps/static/images/applications/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ethereum.png -------------------------------------------------------------------------------- /apps/static/images/applications/etherpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/etherpad.png -------------------------------------------------------------------------------- /apps/static/images/applications/evebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/evebox.png -------------------------------------------------------------------------------- /apps/static/images/applications/eweka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/eweka.png -------------------------------------------------------------------------------- /apps/static/images/applications/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/facebook.png -------------------------------------------------------------------------------- /apps/static/images/applications/fast-com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fast-com.png -------------------------------------------------------------------------------- /apps/static/images/applications/fastmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fastmail.png -------------------------------------------------------------------------------- /apps/static/images/applications/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fedora.png -------------------------------------------------------------------------------- /apps/static/images/applications/feedly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/feedly.png -------------------------------------------------------------------------------- /apps/static/images/applications/feishin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/feishin.png -------------------------------------------------------------------------------- /apps/static/images/applications/fenrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fenrus.png -------------------------------------------------------------------------------- /apps/static/images/applications/ferdi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ferdi.png -------------------------------------------------------------------------------- /apps/static/images/applications/ferdium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ferdium.png -------------------------------------------------------------------------------- /apps/static/images/applications/ferretdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ferretdb.png -------------------------------------------------------------------------------- /apps/static/images/applications/filebot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/filebot.png -------------------------------------------------------------------------------- /apps/static/images/applications/filecloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/filecloud.png -------------------------------------------------------------------------------- /apps/static/images/applications/fileflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fileflows.png -------------------------------------------------------------------------------- /apps/static/images/applications/filegator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/filegator.png -------------------------------------------------------------------------------- /apps/static/images/applications/filepizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/filepizza.png -------------------------------------------------------------------------------- /apps/static/images/applications/filerun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/filerun.png -------------------------------------------------------------------------------- /apps/static/images/applications/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/files.png -------------------------------------------------------------------------------- /apps/static/images/applications/filezilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/filezilla.png -------------------------------------------------------------------------------- /apps/static/images/applications/fios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fios.png -------------------------------------------------------------------------------- /apps/static/images/applications/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/firebase.png -------------------------------------------------------------------------------- /apps/static/images/applications/firefly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/firefly.png -------------------------------------------------------------------------------- /apps/static/images/applications/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/firefox.png -------------------------------------------------------------------------------- /apps/static/images/applications/fireshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fireshare.png -------------------------------------------------------------------------------- /apps/static/images/applications/firewalla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/firewalla.png -------------------------------------------------------------------------------- /apps/static/images/applications/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/flame.png -------------------------------------------------------------------------------- /apps/static/images/applications/flarum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/flarum.png -------------------------------------------------------------------------------- /apps/static/images/applications/flathub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/flathub.png -------------------------------------------------------------------------------- /apps/static/images/applications/flatpak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/flatpak.png -------------------------------------------------------------------------------- /apps/static/images/applications/flexget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/flexget.png -------------------------------------------------------------------------------- /apps/static/images/applications/flogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/flogo.png -------------------------------------------------------------------------------- /apps/static/images/applications/flood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/flood.png -------------------------------------------------------------------------------- /apps/static/images/applications/fluidd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fluidd.png -------------------------------------------------------------------------------- /apps/static/images/applications/flux-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/flux-cd.png -------------------------------------------------------------------------------- /apps/static/images/applications/fly-io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fly-io.png -------------------------------------------------------------------------------- /apps/static/images/applications/forgejo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/forgejo.png -------------------------------------------------------------------------------- /apps/static/images/applications/fortinet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fortinet.png -------------------------------------------------------------------------------- /apps/static/images/applications/foscam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/foscam.png -------------------------------------------------------------------------------- /apps/static/images/applications/fossil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fossil.png -------------------------------------------------------------------------------- /apps/static/images/applications/franz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/franz.png -------------------------------------------------------------------------------- /apps/static/images/applications/freeipa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/freeipa.png -------------------------------------------------------------------------------- /apps/static/images/applications/freenas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/freenas.png -------------------------------------------------------------------------------- /apps/static/images/applications/freenom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/freenom.png -------------------------------------------------------------------------------- /apps/static/images/applications/freepbx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/freepbx.png -------------------------------------------------------------------------------- /apps/static/images/applications/freescout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/freescout.png -------------------------------------------------------------------------------- /apps/static/images/applications/freshping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/freshping.png -------------------------------------------------------------------------------- /apps/static/images/applications/freshrss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/freshrss.png -------------------------------------------------------------------------------- /apps/static/images/applications/friendica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/friendica.png -------------------------------------------------------------------------------- /apps/static/images/applications/frigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/frigate.png -------------------------------------------------------------------------------- /apps/static/images/applications/fronius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fronius.png -------------------------------------------------------------------------------- /apps/static/images/applications/fulcio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fulcio.png -------------------------------------------------------------------------------- /apps/static/images/applications/funkwhale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/funkwhale.png -------------------------------------------------------------------------------- /apps/static/images/applications/fusionpbx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/fusionpbx.png -------------------------------------------------------------------------------- /apps/static/images/applications/gamevault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gamevault.png -------------------------------------------------------------------------------- /apps/static/images/applications/gameyfin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gameyfin.png -------------------------------------------------------------------------------- /apps/static/images/applications/gaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gaps.png -------------------------------------------------------------------------------- /apps/static/images/applications/gatsby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gatsby.png -------------------------------------------------------------------------------- /apps/static/images/applications/gatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gatus.png -------------------------------------------------------------------------------- /apps/static/images/applications/gboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gboard.png -------------------------------------------------------------------------------- /apps/static/images/applications/geckoview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/geckoview.png -------------------------------------------------------------------------------- /apps/static/images/applications/gentoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gentoo.png -------------------------------------------------------------------------------- /apps/static/images/applications/gerbera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gerbera.png -------------------------------------------------------------------------------- /apps/static/images/applications/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ghost.png -------------------------------------------------------------------------------- /apps/static/images/applications/gigaset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gigaset.png -------------------------------------------------------------------------------- /apps/static/images/applications/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/git.png -------------------------------------------------------------------------------- /apps/static/images/applications/gitbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gitbook.png -------------------------------------------------------------------------------- /apps/static/images/applications/gitea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gitea.png -------------------------------------------------------------------------------- /apps/static/images/applications/gitee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gitee.png -------------------------------------------------------------------------------- /apps/static/images/applications/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/github.png -------------------------------------------------------------------------------- /apps/static/images/applications/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gitlab.png -------------------------------------------------------------------------------- /apps/static/images/applications/gitsign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gitsign.png -------------------------------------------------------------------------------- /apps/static/images/applications/glances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/glances.png -------------------------------------------------------------------------------- /apps/static/images/applications/glpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/glpi.png -------------------------------------------------------------------------------- /apps/static/images/applications/gluetun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gluetun.png -------------------------------------------------------------------------------- /apps/static/images/applications/gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gmail.png -------------------------------------------------------------------------------- /apps/static/images/applications/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/go.png -------------------------------------------------------------------------------- /apps/static/images/applications/goaccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/goaccess.png -------------------------------------------------------------------------------- /apps/static/images/applications/godaddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/godaddy.png -------------------------------------------------------------------------------- /apps/static/images/applications/gogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gogs.png -------------------------------------------------------------------------------- /apps/static/images/applications/gollum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gollum.png -------------------------------------------------------------------------------- /apps/static/images/applications/gonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gonic.png -------------------------------------------------------------------------------- /apps/static/images/applications/goodreads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/goodreads.png -------------------------------------------------------------------------------- /apps/static/images/applications/google-fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/google-fi.png -------------------------------------------------------------------------------- /apps/static/images/applications/google-tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/google-tv.png -------------------------------------------------------------------------------- /apps/static/images/applications/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/google.png -------------------------------------------------------------------------------- /apps/static/images/applications/gotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gotify.png -------------------------------------------------------------------------------- /apps/static/images/applications/grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/grafana.png -------------------------------------------------------------------------------- /apps/static/images/applications/gramps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/gramps.png -------------------------------------------------------------------------------- /apps/static/images/applications/grav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/grav.png -------------------------------------------------------------------------------- /apps/static/images/applications/graylog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/graylog.png -------------------------------------------------------------------------------- /apps/static/images/applications/greenbone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/greenbone.png -------------------------------------------------------------------------------- /apps/static/images/applications/grist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/grist.png -------------------------------------------------------------------------------- /apps/static/images/applications/grocy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/grocy.png -------------------------------------------------------------------------------- /apps/static/images/applications/grype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/grype.png -------------------------------------------------------------------------------- /apps/static/images/applications/guacamole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/guacamole.png -------------------------------------------------------------------------------- /apps/static/images/applications/hammond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hammond.png -------------------------------------------------------------------------------- /apps/static/images/applications/handbrake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/handbrake.png -------------------------------------------------------------------------------- /apps/static/images/applications/haproxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/haproxy.png -------------------------------------------------------------------------------- /apps/static/images/applications/harbor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/harbor.png -------------------------------------------------------------------------------- /apps/static/images/applications/harvester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/harvester.png -------------------------------------------------------------------------------- /apps/static/images/applications/hasura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hasura.png -------------------------------------------------------------------------------- /apps/static/images/applications/hatsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hatsh.png -------------------------------------------------------------------------------- /apps/static/images/applications/hdhomerun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hdhomerun.png -------------------------------------------------------------------------------- /apps/static/images/applications/hedgedoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hedgedoc.png -------------------------------------------------------------------------------- /apps/static/images/applications/heimdall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/heimdall.png -------------------------------------------------------------------------------- /apps/static/images/applications/helm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/helm.png -------------------------------------------------------------------------------- /apps/static/images/applications/hetzner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hetzner.png -------------------------------------------------------------------------------- /apps/static/images/applications/hexo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hexo.png -------------------------------------------------------------------------------- /apps/static/images/applications/hifiberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hifiberry.png -------------------------------------------------------------------------------- /apps/static/images/applications/hikvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hikvision.png -------------------------------------------------------------------------------- /apps/static/images/applications/hilook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hilook.png -------------------------------------------------------------------------------- /apps/static/images/applications/hoarder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hoarder.png -------------------------------------------------------------------------------- /apps/static/images/applications/homarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/homarr.png -------------------------------------------------------------------------------- /apps/static/images/applications/homebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/homebox.png -------------------------------------------------------------------------------- /apps/static/images/applications/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/homepage.png -------------------------------------------------------------------------------- /apps/static/images/applications/homer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/homer.png -------------------------------------------------------------------------------- /apps/static/images/applications/homeseer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/homeseer.png -------------------------------------------------------------------------------- /apps/static/images/applications/homey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/homey.png -------------------------------------------------------------------------------- /apps/static/images/applications/honeygain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/honeygain.png -------------------------------------------------------------------------------- /apps/static/images/applications/hoobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hoobs.png -------------------------------------------------------------------------------- /apps/static/images/applications/hortusfox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hortusfox.png -------------------------------------------------------------------------------- /apps/static/images/applications/hostinger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hostinger.png -------------------------------------------------------------------------------- /apps/static/images/applications/hotio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hotio.png -------------------------------------------------------------------------------- /apps/static/images/applications/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hp.png -------------------------------------------------------------------------------- /apps/static/images/applications/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/html.png -------------------------------------------------------------------------------- /apps/static/images/applications/huawei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/huawei.png -------------------------------------------------------------------------------- /apps/static/images/applications/hubitat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hubitat.png -------------------------------------------------------------------------------- /apps/static/images/applications/huginn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/huginn.png -------------------------------------------------------------------------------- /apps/static/images/applications/hugo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hugo.png -------------------------------------------------------------------------------- /apps/static/images/applications/humhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/humhub.png -------------------------------------------------------------------------------- /apps/static/images/applications/hydra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hydra.png -------------------------------------------------------------------------------- /apps/static/images/applications/hyperion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/hyperion.png -------------------------------------------------------------------------------- /apps/static/images/applications/i2p-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/i2p-light.png -------------------------------------------------------------------------------- /apps/static/images/applications/i2p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/i2p.png -------------------------------------------------------------------------------- /apps/static/images/applications/i2pd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/i2pd.png -------------------------------------------------------------------------------- /apps/static/images/applications/icecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/icecast.png -------------------------------------------------------------------------------- /apps/static/images/applications/icinga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/icinga.png -------------------------------------------------------------------------------- /apps/static/images/applications/idrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/idrac.png -------------------------------------------------------------------------------- /apps/static/images/applications/ilo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ilo.png -------------------------------------------------------------------------------- /apps/static/images/applications/immich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/immich.png -------------------------------------------------------------------------------- /apps/static/images/applications/influxdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/influxdb.png -------------------------------------------------------------------------------- /apps/static/images/applications/infoblox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/infoblox.png -------------------------------------------------------------------------------- /apps/static/images/applications/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/instagram.png -------------------------------------------------------------------------------- /apps/static/images/applications/inventree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/inventree.png -------------------------------------------------------------------------------- /apps/static/images/applications/invidious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/invidious.png -------------------------------------------------------------------------------- /apps/static/images/applications/invoke-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/invoke-ai.png -------------------------------------------------------------------------------- /apps/static/images/applications/iobroker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/iobroker.png -------------------------------------------------------------------------------- /apps/static/images/applications/ionos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ionos.png -------------------------------------------------------------------------------- /apps/static/images/applications/ipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ipboard.png -------------------------------------------------------------------------------- /apps/static/images/applications/ipcamtalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ipcamtalk.png -------------------------------------------------------------------------------- /apps/static/images/applications/ipfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ipfs.png -------------------------------------------------------------------------------- /apps/static/images/applications/irc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/irc.png -------------------------------------------------------------------------------- /apps/static/images/applications/iredmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/iredmail.png -------------------------------------------------------------------------------- /apps/static/images/applications/ispconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ispconfig.png -------------------------------------------------------------------------------- /apps/static/images/applications/ispy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ispy.png -------------------------------------------------------------------------------- /apps/static/images/applications/it-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/it-tools.png -------------------------------------------------------------------------------- /apps/static/images/applications/jackett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jackett.png -------------------------------------------------------------------------------- /apps/static/images/applications/jaeger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jaeger.png -------------------------------------------------------------------------------- /apps/static/images/applications/jamstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jamstack.png -------------------------------------------------------------------------------- /apps/static/images/applications/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/java.png -------------------------------------------------------------------------------- /apps/static/images/applications/jeedom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jeedom.png -------------------------------------------------------------------------------- /apps/static/images/applications/jekyll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jekyll.png -------------------------------------------------------------------------------- /apps/static/images/applications/jellyfin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jellyfin.png -------------------------------------------------------------------------------- /apps/static/images/applications/jellystat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jellystat.png -------------------------------------------------------------------------------- /apps/static/images/applications/jelu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jelu.png -------------------------------------------------------------------------------- /apps/static/images/applications/jenkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jenkins.png -------------------------------------------------------------------------------- /apps/static/images/applications/jio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jio.png -------------------------------------------------------------------------------- /apps/static/images/applications/jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jira.png -------------------------------------------------------------------------------- /apps/static/images/applications/jitsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jitsi.png -------------------------------------------------------------------------------- /apps/static/images/applications/joal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/joal.png -------------------------------------------------------------------------------- /apps/static/images/applications/joomla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/joomla.png -------------------------------------------------------------------------------- /apps/static/images/applications/joplin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/joplin.png -------------------------------------------------------------------------------- /apps/static/images/applications/julia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/julia.png -------------------------------------------------------------------------------- /apps/static/images/applications/jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/jupyter.png -------------------------------------------------------------------------------- /apps/static/images/applications/kagi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kagi.png -------------------------------------------------------------------------------- /apps/static/images/applications/kaizoku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kaizoku.png -------------------------------------------------------------------------------- /apps/static/images/applications/kamatera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kamatera.png -------------------------------------------------------------------------------- /apps/static/images/applications/kapacitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kapacitor.png -------------------------------------------------------------------------------- /apps/static/images/applications/kapowarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kapowarr.png -------------------------------------------------------------------------------- /apps/static/images/applications/kasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kasm.png -------------------------------------------------------------------------------- /apps/static/images/applications/kaufland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kaufland.png -------------------------------------------------------------------------------- /apps/static/images/applications/kavita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kavita.png -------------------------------------------------------------------------------- /apps/static/images/applications/kbin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kbin.png -------------------------------------------------------------------------------- /apps/static/images/applications/keenetic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/keenetic.png -------------------------------------------------------------------------------- /apps/static/images/applications/keila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/keila.png -------------------------------------------------------------------------------- /apps/static/images/applications/kerberos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kerberos.png -------------------------------------------------------------------------------- /apps/static/images/applications/kestra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kestra.png -------------------------------------------------------------------------------- /apps/static/images/applications/keycloak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/keycloak.png -------------------------------------------------------------------------------- /apps/static/images/applications/keyoxide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/keyoxide.png -------------------------------------------------------------------------------- /apps/static/images/applications/kibana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kibana.png -------------------------------------------------------------------------------- /apps/static/images/applications/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kick.png -------------------------------------------------------------------------------- /apps/static/images/applications/kimai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kimai.png -------------------------------------------------------------------------------- /apps/static/images/applications/kinto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kinto.png -------------------------------------------------------------------------------- /apps/static/images/applications/kitana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kitana.png -------------------------------------------------------------------------------- /apps/static/images/applications/kiwix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kiwix.png -------------------------------------------------------------------------------- /apps/static/images/applications/klipper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/klipper.png -------------------------------------------------------------------------------- /apps/static/images/applications/ko-fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ko-fi.png -------------------------------------------------------------------------------- /apps/static/images/applications/kodi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kodi.png -------------------------------------------------------------------------------- /apps/static/images/applications/koel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/koel.png -------------------------------------------------------------------------------- /apps/static/images/applications/komga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/komga.png -------------------------------------------------------------------------------- /apps/static/images/applications/kopia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kopia.png -------------------------------------------------------------------------------- /apps/static/images/applications/kotlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kotlin.png -------------------------------------------------------------------------------- /apps/static/images/applications/kpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kpn.png -------------------------------------------------------------------------------- /apps/static/images/applications/krusader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/krusader.png -------------------------------------------------------------------------------- /apps/static/images/applications/kutt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/kutt.png -------------------------------------------------------------------------------- /apps/static/images/applications/lancache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lancache.png -------------------------------------------------------------------------------- /apps/static/images/applications/lanraragi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lanraragi.png -------------------------------------------------------------------------------- /apps/static/images/applications/lark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lark.png -------------------------------------------------------------------------------- /apps/static/images/applications/leanote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/leanote.png -------------------------------------------------------------------------------- /apps/static/images/applications/leantime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/leantime.png -------------------------------------------------------------------------------- /apps/static/images/applications/lemmy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lemmy.png -------------------------------------------------------------------------------- /apps/static/images/applications/libreddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/libreddit.png -------------------------------------------------------------------------------- /apps/static/images/applications/libremdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/libremdb.png -------------------------------------------------------------------------------- /apps/static/images/applications/librenms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/librenms.png -------------------------------------------------------------------------------- /apps/static/images/applications/librex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/librex.png -------------------------------------------------------------------------------- /apps/static/images/applications/librey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/librey.png -------------------------------------------------------------------------------- /apps/static/images/applications/lidarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lidarr.png -------------------------------------------------------------------------------- /apps/static/images/applications/lidl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lidl.png -------------------------------------------------------------------------------- /apps/static/images/applications/lighttpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lighttpd.png -------------------------------------------------------------------------------- /apps/static/images/applications/linkace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/linkace.png -------------------------------------------------------------------------------- /apps/static/images/applications/linkding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/linkding.png -------------------------------------------------------------------------------- /apps/static/images/applications/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/linkedin.png -------------------------------------------------------------------------------- /apps/static/images/applications/linkstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/linkstack.png -------------------------------------------------------------------------------- /apps/static/images/applications/linksys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/linksys.png -------------------------------------------------------------------------------- /apps/static/images/applications/linode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/linode.png -------------------------------------------------------------------------------- /apps/static/images/applications/listmonk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/listmonk.png -------------------------------------------------------------------------------- /apps/static/images/applications/lnbits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lnbits.png -------------------------------------------------------------------------------- /apps/static/images/applications/lobe-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lobe-chat.png -------------------------------------------------------------------------------- /apps/static/images/applications/loki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/loki.png -------------------------------------------------------------------------------- /apps/static/images/applications/lsio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lsio.png -------------------------------------------------------------------------------- /apps/static/images/applications/lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lua.png -------------------------------------------------------------------------------- /apps/static/images/applications/lychee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lychee.png -------------------------------------------------------------------------------- /apps/static/images/applications/lynx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/lynx.png -------------------------------------------------------------------------------- /apps/static/images/applications/mailu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mailu.png -------------------------------------------------------------------------------- /apps/static/images/applications/mak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mak.png -------------------------------------------------------------------------------- /apps/static/images/applications/maloja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/maloja.png -------------------------------------------------------------------------------- /apps/static/images/applications/mango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mango.png -------------------------------------------------------------------------------- /apps/static/images/applications/matomo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/matomo.png -------------------------------------------------------------------------------- /apps/static/images/applications/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/matrix.png -------------------------------------------------------------------------------- /apps/static/images/applications/mautic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mautic.png -------------------------------------------------------------------------------- /apps/static/images/applications/mealie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mealie.png -------------------------------------------------------------------------------- /apps/static/images/applications/medusa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/medusa.png -------------------------------------------------------------------------------- /apps/static/images/applications/memos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/memos.png -------------------------------------------------------------------------------- /apps/static/images/applications/meraki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/meraki.png -------------------------------------------------------------------------------- /apps/static/images/applications/meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/meta.png -------------------------------------------------------------------------------- /apps/static/images/applications/metube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/metube.png -------------------------------------------------------------------------------- /apps/static/images/applications/mineos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mineos.png -------------------------------------------------------------------------------- /apps/static/images/applications/minio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/minio.png -------------------------------------------------------------------------------- /apps/static/images/applications/misp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/misp.png -------------------------------------------------------------------------------- /apps/static/images/applications/mkdocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mkdocs.png -------------------------------------------------------------------------------- /apps/static/images/applications/mojeek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mojeek.png -------------------------------------------------------------------------------- /apps/static/images/applications/monero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/monero.png -------------------------------------------------------------------------------- /apps/static/images/applications/monica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/monica.png -------------------------------------------------------------------------------- /apps/static/images/applications/monit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/monit.png -------------------------------------------------------------------------------- /apps/static/images/applications/moodle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/moodle.png -------------------------------------------------------------------------------- /apps/static/images/applications/mpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mpm.png -------------------------------------------------------------------------------- /apps/static/images/applications/mqtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mqtt.png -------------------------------------------------------------------------------- /apps/static/images/applications/mumble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mumble.png -------------------------------------------------------------------------------- /apps/static/images/applications/mylar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mylar.png -------------------------------------------------------------------------------- /apps/static/images/applications/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/mysql.png -------------------------------------------------------------------------------- /apps/static/images/applications/n8n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/n8n.png -------------------------------------------------------------------------------- /apps/static/images/applications/nagios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/nagios.png -------------------------------------------------------------------------------- /apps/static/images/applications/ncore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ncore.png -------------------------------------------------------------------------------- /apps/static/images/applications/neko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/neko.png -------------------------------------------------------------------------------- /apps/static/images/applications/neo4j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/neo4j.png -------------------------------------------------------------------------------- /apps/static/images/applications/netapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/netapp.png -------------------------------------------------------------------------------- /apps/static/images/applications/netbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/netbox.png -------------------------------------------------------------------------------- /apps/static/images/applications/newegg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/newegg.png -------------------------------------------------------------------------------- /apps/static/images/applications/nextjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/nextjs.png -------------------------------------------------------------------------------- /apps/static/images/applications/nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/nginx.png -------------------------------------------------------------------------------- /apps/static/images/applications/nitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/nitter.png -------------------------------------------------------------------------------- /apps/static/images/applications/nocodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/nocodb.png -------------------------------------------------------------------------------- /apps/static/images/applications/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/nodejs.png -------------------------------------------------------------------------------- /apps/static/images/applications/nomad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/nomad.png -------------------------------------------------------------------------------- /apps/static/images/applications/nomie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/nomie.png -------------------------------------------------------------------------------- /apps/static/images/applications/notion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/notion.png -------------------------------------------------------------------------------- /apps/static/images/applications/ntfy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ntfy.png -------------------------------------------------------------------------------- /apps/static/images/applications/ntop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ntop.png -------------------------------------------------------------------------------- /apps/static/images/applications/ntopng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ntopng.png -------------------------------------------------------------------------------- /apps/static/images/applications/nut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/nut.png -------------------------------------------------------------------------------- /apps/static/images/applications/nxlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/nxlog.png -------------------------------------------------------------------------------- /apps/static/images/applications/nzbget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/nzbget.png -------------------------------------------------------------------------------- /apps/static/images/applications/obico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/obico.png -------------------------------------------------------------------------------- /apps/static/images/applications/oculus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/oculus.png -------------------------------------------------------------------------------- /apps/static/images/applications/odoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/odoo.png -------------------------------------------------------------------------------- /apps/static/images/applications/ollama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ollama.png -------------------------------------------------------------------------------- /apps/static/images/applications/omada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/omada.png -------------------------------------------------------------------------------- /apps/static/images/applications/ombi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ombi.png -------------------------------------------------------------------------------- /apps/static/images/applications/omnidb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/omnidb.png -------------------------------------------------------------------------------- /apps/static/images/applications/onedev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/onedev.png -------------------------------------------------------------------------------- /apps/static/images/applications/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/openai.png -------------------------------------------------------------------------------- /apps/static/images/applications/opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/opera.png -------------------------------------------------------------------------------- /apps/static/images/applications/oracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/oracle.png -------------------------------------------------------------------------------- /apps/static/images/applications/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/orange.png -------------------------------------------------------------------------------- /apps/static/images/applications/origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/origin.png -------------------------------------------------------------------------------- /apps/static/images/applications/oscarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/oscarr.png -------------------------------------------------------------------------------- /apps/static/images/applications/ovh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ovh.png -------------------------------------------------------------------------------- /apps/static/images/applications/ovirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ovirt.png -------------------------------------------------------------------------------- /apps/static/images/applications/pastey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/pastey.png -------------------------------------------------------------------------------- /apps/static/images/applications/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/paypal.png -------------------------------------------------------------------------------- /apps/static/images/applications/peanut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/peanut.png -------------------------------------------------------------------------------- /apps/static/images/applications/penpot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/penpot.png -------------------------------------------------------------------------------- /apps/static/images/applications/petio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/petio.png -------------------------------------------------------------------------------- /apps/static/images/applications/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/php.png -------------------------------------------------------------------------------- /apps/static/images/applications/pia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/pia.png -------------------------------------------------------------------------------- /apps/static/images/applications/picsur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/picsur.png -------------------------------------------------------------------------------- /apps/static/images/applications/pikvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/pikvm.png -------------------------------------------------------------------------------- /apps/static/images/applications/pinry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/pinry.png -------------------------------------------------------------------------------- /apps/static/images/applications/pivpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/pivpn.png -------------------------------------------------------------------------------- /apps/static/images/applications/piwigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/piwigo.png -------------------------------------------------------------------------------- /apps/static/images/applications/planka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/planka.png -------------------------------------------------------------------------------- /apps/static/images/applications/plesk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/plesk.png -------------------------------------------------------------------------------- /apps/static/images/applications/plex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/plex.png -------------------------------------------------------------------------------- /apps/static/images/applications/plume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/plume.png -------------------------------------------------------------------------------- /apps/static/images/applications/podify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/podify.png -------------------------------------------------------------------------------- /apps/static/images/applications/poly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/poly.png -------------------------------------------------------------------------------- /apps/static/images/applications/portus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/portus.png -------------------------------------------------------------------------------- /apps/static/images/applications/poste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/poste.png -------------------------------------------------------------------------------- /apps/static/images/applications/prtg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/prtg.png -------------------------------------------------------------------------------- /apps/static/images/applications/putty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/putty.png -------------------------------------------------------------------------------- /apps/static/images/applications/pwpush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/pwpush.png -------------------------------------------------------------------------------- /apps/static/images/applications/pydio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/pydio.png -------------------------------------------------------------------------------- /apps/static/images/applications/pyload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/pyload.png -------------------------------------------------------------------------------- /apps/static/images/applications/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/python.png -------------------------------------------------------------------------------- /apps/static/images/applications/qnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/qnap.png -------------------------------------------------------------------------------- /apps/static/images/applications/quetre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/quetre.png -------------------------------------------------------------------------------- /apps/static/images/applications/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/r.png -------------------------------------------------------------------------------- /apps/static/images/applications/radarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/radarr.png -------------------------------------------------------------------------------- /apps/static/images/applications/rallly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/rallly.png -------------------------------------------------------------------------------- /apps/static/images/applications/raneto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/raneto.png -------------------------------------------------------------------------------- /apps/static/images/applications/rclone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/rclone.png -------------------------------------------------------------------------------- /apps/static/images/applications/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/reddit.png -------------------------------------------------------------------------------- /apps/static/images/applications/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/redis.png -------------------------------------------------------------------------------- /apps/static/images/applications/rekor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/rekor.png -------------------------------------------------------------------------------- /apps/static/images/applications/restic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/restic.png -------------------------------------------------------------------------------- /apps/static/images/applications/rimgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/rimgo.png -------------------------------------------------------------------------------- /apps/static/images/applications/riot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/riot.png -------------------------------------------------------------------------------- /apps/static/images/applications/romm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/romm.png -------------------------------------------------------------------------------- /apps/static/images/applications/rompya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/rompya.png -------------------------------------------------------------------------------- /apps/static/images/applications/rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/rook.png -------------------------------------------------------------------------------- /apps/static/images/applications/router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/router.png -------------------------------------------------------------------------------- /apps/static/images/applications/rport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/rport.png -------------------------------------------------------------------------------- /apps/static/images/applications/rspamd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/rspamd.png -------------------------------------------------------------------------------- /apps/static/images/applications/rsshub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/rsshub.png -------------------------------------------------------------------------------- /apps/static/images/applications/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ruby.png -------------------------------------------------------------------------------- /apps/static/images/applications/rumble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/rumble.png -------------------------------------------------------------------------------- /apps/static/images/applications/rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/rust.png -------------------------------------------------------------------------------- /apps/static/images/applications/ryot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ryot.png -------------------------------------------------------------------------------- /apps/static/images/applications/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/safari.png -------------------------------------------------------------------------------- /apps/static/images/applications/salad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/salad.png -------------------------------------------------------------------------------- /apps/static/images/applications/searx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/searx.png -------------------------------------------------------------------------------- /apps/static/images/applications/sensu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/sensu.png -------------------------------------------------------------------------------- /apps/static/images/applications/sentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/sentry.png -------------------------------------------------------------------------------- /apps/static/images/applications/seq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/seq.png -------------------------------------------------------------------------------- /apps/static/images/applications/sftpgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/sftpgo.png -------------------------------------------------------------------------------- /apps/static/images/applications/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/shell.png -------------------------------------------------------------------------------- /apps/static/images/applications/shelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/shelly.png -------------------------------------------------------------------------------- /apps/static/images/applications/shiori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/shiori.png -------------------------------------------------------------------------------- /apps/static/images/applications/shlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/shlink.png -------------------------------------------------------------------------------- /apps/static/images/applications/shoko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/shoko.png -------------------------------------------------------------------------------- /apps/static/images/applications/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/signal.png -------------------------------------------------------------------------------- /apps/static/images/applications/siyuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/siyuan.png -------------------------------------------------------------------------------- /apps/static/images/applications/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/skype.png -------------------------------------------------------------------------------- /apps/static/images/applications/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/slack.png -------------------------------------------------------------------------------- /apps/static/images/applications/slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/slice.png -------------------------------------------------------------------------------- /apps/static/images/applications/slink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/slink.png -------------------------------------------------------------------------------- /apps/static/images/applications/slskd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/slskd.png -------------------------------------------------------------------------------- /apps/static/images/applications/snibox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/snibox.png -------------------------------------------------------------------------------- /apps/static/images/applications/sogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/sogo.png -------------------------------------------------------------------------------- /apps/static/images/applications/sonarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/sonarr.png -------------------------------------------------------------------------------- /apps/static/images/applications/sophos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/sophos.png -------------------------------------------------------------------------------- /apps/static/images/applications/sphinx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/sphinx.png -------------------------------------------------------------------------------- /apps/static/images/applications/splunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/splunk.png -------------------------------------------------------------------------------- /apps/static/images/applications/stash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/stash.png -------------------------------------------------------------------------------- /apps/static/images/applications/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/steam.png -------------------------------------------------------------------------------- /apps/static/images/applications/storj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/storj.png -------------------------------------------------------------------------------- /apps/static/images/applications/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/storm.png -------------------------------------------------------------------------------- /apps/static/images/applications/strapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/strapi.png -------------------------------------------------------------------------------- /apps/static/images/applications/swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/swift.png -------------------------------------------------------------------------------- /apps/static/images/applications/syft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/syft.png -------------------------------------------------------------------------------- /apps/static/images/applications/sympa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/sympa.png -------------------------------------------------------------------------------- /apps/static/images/applications/taiga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/taiga.png -------------------------------------------------------------------------------- /apps/static/images/applications/talos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/talos.png -------------------------------------------------------------------------------- /apps/static/images/applications/tdarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/tdarr.png -------------------------------------------------------------------------------- /apps/static/images/applications/teedy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/teedy.png -------------------------------------------------------------------------------- /apps/static/images/applications/tenda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/tenda.png -------------------------------------------------------------------------------- /apps/static/images/applications/thanos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/thanos.png -------------------------------------------------------------------------------- /apps/static/images/applications/theia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/theia.png -------------------------------------------------------------------------------- /apps/static/images/applications/tiktok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/tiktok.png -------------------------------------------------------------------------------- /apps/static/images/applications/tipi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/tipi.png -------------------------------------------------------------------------------- /apps/static/images/applications/tor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/tor.png -------------------------------------------------------------------------------- /apps/static/images/applications/traggo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/traggo.png -------------------------------------------------------------------------------- /apps/static/images/applications/trakt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/trakt.png -------------------------------------------------------------------------------- /apps/static/images/applications/trivy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/trivy.png -------------------------------------------------------------------------------- /apps/static/images/applications/tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/tux.png -------------------------------------------------------------------------------- /apps/static/images/applications/twitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/twitch.png -------------------------------------------------------------------------------- /apps/static/images/applications/typo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/typo3.png -------------------------------------------------------------------------------- /apps/static/images/applications/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ubuntu.png -------------------------------------------------------------------------------- /apps/static/images/applications/udemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/udemy.png -------------------------------------------------------------------------------- /apps/static/images/applications/umami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/umami.png -------------------------------------------------------------------------------- /apps/static/images/applications/umbrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/umbrel.png -------------------------------------------------------------------------------- /apps/static/images/applications/unifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/unifi.png -------------------------------------------------------------------------------- /apps/static/images/applications/unimus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/unimus.png -------------------------------------------------------------------------------- /apps/static/images/applications/unraid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/unraid.png -------------------------------------------------------------------------------- /apps/static/images/applications/updog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/updog.png -------------------------------------------------------------------------------- /apps/static/images/applications/ups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ups.png -------------------------------------------------------------------------------- /apps/static/images/applications/upsnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/upsnap.png -------------------------------------------------------------------------------- /apps/static/images/applications/vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/vault.png -------------------------------------------------------------------------------- /apps/static/images/applications/veeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/veeam.png -------------------------------------------------------------------------------- /apps/static/images/applications/vercel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/vercel.png -------------------------------------------------------------------------------- /apps/static/images/applications/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/vi.png -------------------------------------------------------------------------------- /apps/static/images/applications/vmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/vmware.png -------------------------------------------------------------------------------- /apps/static/images/applications/voron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/voron.png -------------------------------------------------------------------------------- /apps/static/images/applications/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/vscode.png -------------------------------------------------------------------------------- /apps/static/images/applications/vultr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/vultr.png -------------------------------------------------------------------------------- /apps/static/images/applications/vuplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/vuplus.png -------------------------------------------------------------------------------- /apps/static/images/applications/wakapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wakapi.png -------------------------------------------------------------------------------- /apps/static/images/applications/wallos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wallos.png -------------------------------------------------------------------------------- /apps/static/images/applications/ward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ward.png -------------------------------------------------------------------------------- /apps/static/images/applications/waze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/waze.png -------------------------------------------------------------------------------- /apps/static/images/applications/wazuh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wazuh.png -------------------------------------------------------------------------------- /apps/static/images/applications/wbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wbo.png -------------------------------------------------------------------------------- /apps/static/images/applications/webdav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/webdav.png -------------------------------------------------------------------------------- /apps/static/images/applications/webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/webkit.png -------------------------------------------------------------------------------- /apps/static/images/applications/webmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/webmin.png -------------------------------------------------------------------------------- /apps/static/images/applications/webssh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/webssh.jpg -------------------------------------------------------------------------------- /apps/static/images/applications/webtop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/webtop.png -------------------------------------------------------------------------------- /apps/static/images/applications/wekan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wekan.png -------------------------------------------------------------------------------- /apps/static/images/applications/wetty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wetty.png -------------------------------------------------------------------------------- /apps/static/images/applications/wger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wger.png -------------------------------------------------------------------------------- /apps/static/images/applications/wikijs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wikijs.png -------------------------------------------------------------------------------- /apps/static/images/applications/wizarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wizarr.png -------------------------------------------------------------------------------- /apps/static/images/applications/wled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wled.png -------------------------------------------------------------------------------- /apps/static/images/applications/wolfi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wolfi.png -------------------------------------------------------------------------------- /apps/static/images/applications/wud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/wud.png -------------------------------------------------------------------------------- /apps/static/images/applications/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/x.png -------------------------------------------------------------------------------- /apps/static/images/applications/xcp-ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/xcp-ng.png -------------------------------------------------------------------------------- /apps/static/images/applications/xmr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/xmr.png -------------------------------------------------------------------------------- /apps/static/images/applications/xmrig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/xmrig.png -------------------------------------------------------------------------------- /apps/static/images/applications/xteve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/xteve.png -------------------------------------------------------------------------------- /apps/static/images/applications/xwiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/xwiki.png -------------------------------------------------------------------------------- /apps/static/images/applications/yaade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/yaade.png -------------------------------------------------------------------------------- /apps/static/images/applications/yacht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/yacht.png -------------------------------------------------------------------------------- /apps/static/images/applications/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/yahoo.png -------------------------------------------------------------------------------- /apps/static/images/applications/yandex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/yandex.png -------------------------------------------------------------------------------- /apps/static/images/applications/ymarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ymarks.png -------------------------------------------------------------------------------- /apps/static/images/applications/ynab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/ynab.png -------------------------------------------------------------------------------- /apps/static/images/applications/yourls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/yourls.png -------------------------------------------------------------------------------- /apps/static/images/applications/yts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/yts.png -------------------------------------------------------------------------------- /apps/static/images/applications/zabbix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/zabbix.png -------------------------------------------------------------------------------- /apps/static/images/applications/zabka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/zabka.png -------------------------------------------------------------------------------- /apps/static/images/applications/zammad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/zammad.png -------------------------------------------------------------------------------- /apps/static/images/applications/znc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/znc.png -------------------------------------------------------------------------------- /apps/static/images/applications/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/zoom.png -------------------------------------------------------------------------------- /apps/static/images/applications/zoraxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/zoraxy.png -------------------------------------------------------------------------------- /apps/static/images/applications/zulip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/applications/zulip.png -------------------------------------------------------------------------------- /apps/static/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/error.png -------------------------------------------------------------------------------- /apps/static/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/images/user.png -------------------------------------------------------------------------------- /apps/static/logo/deployaroo_text_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/logo/deployaroo_text_white.png -------------------------------------------------------------------------------- /apps/static/logo/deployaroo_white.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/static/logo/deployaroo_white.ico -------------------------------------------------------------------------------- /apps/static/vendor/fontawesome5/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/templates/includes/scripts.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/vmware/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Blueprint 2 | 3 | blueprint = Blueprint( 4 | 'vmware_blueprint', 5 | __name__, 6 | url_prefix='' 7 | ) 8 | -------------------------------------------------------------------------------- /apps/vmware/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blink-zero/deployaroo/8e888e53058f6fb780052bd47c8ac2f0f0edfdb4/apps/vmware/util.py --------------------------------------------------------------------------------