helio-ecosystem / helio-frontend

A graphical interface for the Helio rest service
2 stars 0 forks source link

Helio Frontend

Quickstart

Using Helio-Frontend is very easy with docker. You only need to pull the latest version from Docker Hub with next command

docker pull emiliocrespoperan/helio-frontend:latest

This docker image has the following docker environment variables:

Use docker compose with the following recipe if you want the version for this project:

version: '3'
services:
  helio-publisher:
    image: acimmino/helio-rest:latest
    volumes: 
      - ./local/:/usr/src/app/local/
      - ./db/:/usr/src/app/db/
    ports:
      - "4567:4567"
  frontend:
    image: emiliocrespoperan/helio-frontend:latest
    depends_on:
      - helio-rest
    ports:
      - "4201:80"

Otherwise, if you want a minimal application to learn about Helio-Ecosystem, use this docker compose instead:

version: '3'
services:
  helio-publisher:
    image: acimmino/helio-rest:latest
    volumes: 
      - ./local/:/usr/src/app/local/
      - ./db/:/usr/src/app/db/
    ports:
      - "4567:4567"
  frontend:
    image: emiliocrespoperan/helio-frontend:latest
    depends_on:
      - helio-rest
    ports:
      - "4201:80"
      - HELIO_REST_HOST=http://localhost:4567
      - HELIO_MODE=PLAYGROUND

Acknowledgements

This project has been partially funded by:

Project Grant
The European project AURORAL from the European Union's Horizont 2020 research and innovation programme under grant agreement Nº101016854.
The European project COGITO from the European Union's Horizont 2020 research and innovation programme under grant agreement Nº958310.