Go to file
Philipp Rothmann 5532d022ac fix: enable scrolling 2023-01-03 11:06:17 +01:00
backend fix db stuff 2022-11-22 13:25:39 +01:00
deployment add-frames (#1) 2022-11-02 10:25:43 +01:00
public add more icons 2022-11-22 17:31:07 +01:00
src fix: enable scrolling 2023-01-03 11:06:17 +01:00
.dockerignore add-frames (#1) 2022-11-02 10:25:43 +01:00
.envrc add-frames (#1) 2022-11-02 10:25:43 +01:00
.eslintignore Merge remote branch 'dashboard-backend/move-everything-to-backend-folder' into 71-merge-dashboard-and-dashboard-backend-repos 2022-10-12 14:30:07 +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 add-frames (#1) 2022-11-02 10:25:43 +01:00
.gitlab-ci.yml Merge remote branch 'dashboard-backend/move-everything-to-backend-folder' into 71-merge-dashboard-and-dashboard-backend-repos 2022-10-12 14:30:07 +02: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
CHANGELOG.md Show Kratos general failure messages (for example for r wrong password), fix welcome message 2022-10-14 14:48:38 +02:00
Dockerfile add-frames (#1) 2022-11-02 10:25:43 +01:00
LICENSE Add AGPL license 2021-11-22 16:05:10 +01:00
Makefile introduce admin area 2022-11-08 16:36:16 +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 add-frames (#1) 2022-11-02 10:25:43 +01:00
react-table-config.d.ts Initial commit 2021-09-27 12:17:33 +02:00
renovate.json add velero as hidden app 2022-10-13 12:25:01 +02:00
tailwind.config.js add-frames (#1) 2022-11-02 10:25:43 +01:00
tsconfig.json Initial commit 2021-09-27 12:17:33 +02:00
yarn.lock add-frames (#1) 2022-11-02 10:25:43 +01: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.