Giter Site home page Giter Site logo

sevenrats / jellyfin.hardwarevisualizer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jpvenson/jellyfin.hardwarevisualizer

0.0 0.0 0.0 544 KB

Repository to host the Hardware Survey visualizer Server

JavaScript 0.04% C# 15.96% CSS 51.48% HTML 1.49% Dockerfile 0.17% SCSS 30.86%

jellyfin.hardwarevisualizer's Introduction

Jellyfin.HardwareVisualizer

Repository to host the Hardware Survey visualizer Server

Contains the Blazor application to Display all hardware survey data in a Barchart form.

Example use docker-compose.yaml:

version: '3'
services:
  jellyfin-hardware-survey-web:
    image: ghcr.io/jpvenson/jellyfin.hardwarevisualizer:main
    hostname: jellyfin-hardware-survey-web
    environment:
      - PG_User=jellyfin
      - PG_Password=jellyfin
      - PG_Host=jellyfin-hardware-survey-database
      - PG_Port=5432
      - PG_Database=Jellyfin.HardwareVisualizer
    restart: always
    ports:
      - 80:8080
    depends_on:
      - jellyfin-hardware-survey-database
    networks:
      - compose_jellyfin_hardware_survey_network
  jellyfin-hardware-survey-database:
    image: postgres:16-alpine
    hostname: jellyfin-hardware-survey-database
    environment:
      - POSTGRES_USER=jellyfin
      - POSTGRES_PASSWORD=jellyfin
      - POSTGRES_HOST=jellyfin-hardware-survey-database
      - POSTGRES_PORT=5432
      - POSTGRES_DATABASE=Jellyfin.HardwareVisualizer
    volumes:
      - postgres-data:/var/lib/postgresql/data
    restart: always
    networks:
      - compose_jellyfin_hardware_survey_network
volumes:
  postgres-data: {}

networks:
  compose_jellyfin_hardware_survey_network:    
    name: "compose_jellyfin-hardware-survey_network"

jellyfin.hardwarevisualizer's People

Contributors

jpvenson avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.