outsideris / charthub.litmuschaos.io

front-end and back-end for litmus community charts

Home Page:http://hub.litmuschaos.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Litmus Chaos Community Chart Hub

FOSSA Status

Development Setup

Prerequisite

  • Golang is installed and configured, If not follow the instructions here.
  • Install Node.js and npm. Follow the instructions here.
  • Repo should be cloned to your go path, repo path should be
$GOPATH/src/github.com/litmuschaos/charthub.litmuschaos.io

Tech Stack from Frontend

Tech Stack from Backend

Start Frontend

Install it and run:

cd app/client
npm i
npm start

Build it and serve:

cd app/client
npm run build
npm install -g serve
serve -s build

Enable PWA ServiceWorker [OPTIONAL]

Just comment in the following line in the index.tsx:

// registerServiceWorker();

to

registerServiceWorker();

Start Backend Server

cd app/server
go run main.go

The backend go server will be up and running on port 8080

Dev setup: Enable Prettier [OPTIONAL]

  1. Step: Install the Prettier plugin (e.g. the one of Esben Petersen)
  2. Add the following snippet to your settings in VSCode:
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
       "source.organizeImports": true // optional
   },

Usage

Open your browser and go to http://localhost:3000/ to access the frontend

Docker Setup

This project has been configured to run with docker, you can initialize the system by running

 docker-compose up

This will setup the nginx and go server for you. To access the frontend use http://localhost/. You need to have docker and docker-compose installed to use this method.

Resources

Our Standup open community meeting link:

Feel free to drop by and participate in our discussion of new open source projects here

Figma Design document for the Front-end website:

View, review, give feedbacks and add comments, suggests upgrades, just about anything related to design right here

Visit our main Litmus repo:

Were are more than welcoming to a new contributor, pay a visit and star it for updates right here

License

FOSSA Status

About

front-end and back-end for litmus community charts

http://hub.litmuschaos.io/

License:Apache License 2.0


Languages

Language:TypeScript 69.9%Language:Go 24.1%Language:HTML 2.9%Language:JavaScript 2.6%Language:CSS 0.3%Language:Makefile 0.2%