Go to file
Varac 7cc1b63365
Lint README.md, document .env file usgae
2022-06-16 12:33:03 +02:00
deployment set new image tags for dashboard and dashboard-backend 2022-06-15 15:48:17 +02:00
public Feat/hide unused features 2022-02-09 09:03:44 +00:00
src Fixed role management while changing own role and removed No access from dashboard dropdown role 2022-06-15 14:50:35 +02:00
.env.example Use stackspin_proxy instead of 127.0.0.1 2022-06-16 12:17:07 +02:00
.eslintignore Initial commit 2021-09-27 12:17:33 +02:00
.eslintrc.js Initial commit 2021-09-27 12:17:33 +02:00
.gitattributes Initial commit 2021-09-27 12:17:33 +02:00
.gitignore process feedback 2021-10-06 14:38:20 +02:00
.gitlab-ci.yml hotfix stackspin-dashboard helm chart publishing 2021-12-13 16:57:24 +01:00
.lintstagedrc Initial commit 2021-09-27 12:17:33 +02:00
.prettierrc Initial commit 2021-09-27 12:17:33 +02:00
.styleci.yml Initial commit 2021-09-27 12:17:33 +02:00
LICENSE Add AGPL license 2021-11-22 16:05:10 +01:00
README.md Lint README.md, document .env file usgae 2022-06-16 12:33:03 +02:00
craco.config.js Initial commit 2021-09-27 12:17:33 +02:00
package.json Feat/hide unused features 2022-02-09 09:03:44 +00:00
react-table-config.d.ts Initial commit 2021-09-27 12:17:33 +02:00
renovate.json Disable npm updates 2022-04-21 12:15:31 +02:00
tailwind.config.js Feat/dashboard modals 2021-11-02 15:22:53 +00:00
tsconfig.json Initial commit 2021-09-27 12:17:33 +02:00
yarn.lock Feat/hide unused features 2022-02-09 09:03:44 +00:00

README.md

Stackspin Dashboard

This repo hosts the Stackspin Dashboard frontend code. The backend code is located at https://open.greenhost.net/stackspin/dashboard-backend.

Development environment

Setup

Create a .env file in the project root directory:

cp .env.example .env

and adjust the REACT_APP_HYDRA_PUBLIC_URL to the SSO URL of your cluster.

yarn start

Runs the app in the development mode. Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits. You will also see any lint errors in the console.

yarn test

Launches the test runner in the interactive watch mode. See the section about running tests for more information.

yarn build

Builds the app for production to the build folder. It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes. Your app is ready to be deployed!

See the section about deployment for more information.

yarn eject

Note: this is a one-way operation. Once you eject, you cant go back!

If you arent satisfied with the build tool and configuration choices, you can eject at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject will still work, but they will point to the copied scripts so you can tweak them. At this point youre on your own.

You dont have to ever use eject. The curated feature set is suitable for small and middle deployments, and you shouldnt feel obligated to use this feature. However we understand that this tool wouldnt be useful if you couldnt customize it when you are ready for it.

Learn More

You can learn more in the Create React App documentation.