Skip to content

iamelevich/parquet-online-viewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Parquet Online Viewer

This is simple application to view Apache Parquet files. You can test it here

Development

Backend

To start backend in dev mod run:

yarn start:dev:be

or

go run main.go --disable-frontend=true

Frontend

To start frontend with HRM run:

yarn start:dev:fe

or go to frontend dir and run

yarn start

Production

Build

yarn build

Start

./bin/parquet-online-viewer

Docker

Build

yarn docker:build

Run container

To run container from docker.hub

docker run --name=parquet-online-viewer -p 80:1323 -d beer13/parquet-online-viewer

Run with docker-compose

version: "3"
services:
  parquet-online-viewer:
    image: beer13/parquet-online-viewer:latest
    ports:
      - "80:1323"