Go to file
Arie Peterson 696ffba9fe Merge branch '96-notify-user-about-incorrect-email-pw-combination' into 'main'
Resolve "Notify user about incorrect email/pw combination"

Closes #94 and #96

See merge request stackspin/dashboard!62
2022-10-18 12:43:39 +00:00
backend fix some formatting issues 2022-10-18 12:10:42 +02:00
deployment release chart 1.5.1 2022-10-13 14:55:11 +02:00
public add velero as hidden app 2022-10-13 12:25:01 +02:00
src add velero as hidden app 2022-10-13 12:25:01 +02:00
.env.example Add HYDRA_PUBLIC_URL env variable and fix replace of sing out url 2022-07-13 14:59:15 +02: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 move everything to backend folder for migration to dashboard repository 2022-10-12 13:38:51 +02: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
LICENSE move everything to backend folder for migration to dashboard repository 2022-10-12 13:38:51 +02:00
README.md move everything to backend folder for migration to dashboard repository 2022-10-12 13:38:51 +02:00
craco.config.js Initial commit 2021-09-27 12:17:33 +02:00
package.json added simple YAML validation on FE 2022-08-05 20:22:05 +02: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 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 unfinished work that adds loading the list of apps dynamically 2022-09-29 15:37:41 +02: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.