diff --git a/README.html b/README.html deleted file mode 100644 index e9a0e9c19e..0000000000 --- a/README.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - -
-
-Backstage is an open platform for building developer portals.
- -The philosophy behind Backstage is simple: Don’t expose your engineers to the full complexity of your infrastructure tooling. Engineers should be shipping code β not figuring out a whole new toolset every time they want to implement the basics. Backstage allows you add “stuff” (tooling, services, features, etc.) by adding a plugin, instead of building a new tool. This saves you work and avoids the need of your team to learn how to use and support yet another tool.
- -For more information go to backstage.io or join our Discord chatroom.
- -As companies grow, their infrastructure systems get messier. Backstage unifies all your infrastructure tooling, services, and documentation with a single, consistent UI.
- -This blog post provides more examples of how Backstage is used inside Spotify:
- -https://labs.spotify.com/2020/03/17/what-the-heck-is-backstage-anyway/
- -We created Backstage about 4 years ago. While our internal version of Backstage has had the benefit of time to mature and evolve, the first iteration of our open source version is still nascent. We are envisioning three phases of the project and we have already begun work on various aspects of these phases:
- -π£ Phase 1: Extensible frontend platform (now) - You will be able to easily create a single consistent UI layer for your internal infrastructure and tools. A set of reusable UX patterns and components help ensure a consistent experience between tools.
π’ Phase 2: Manage your stuff (next 2–3 months) - Manage anything from microservices to software components to infrastructure and your service catalog. Regardless of whether you want to create a new library, view service deployment status in Kubernetes, or check the test coverage for a website – Backstage will provide all of those tools - and many more - in a single developer portal.
π Phase 3: Ecosystem (later) - Everyone’s infrastructure stack is different. By fostering a vibrant community of contributors we hope to provide an ecosystem of Open Source plugins/integrations that allows you to pick the tools that match your stack.
Check out our Milestones and open RFCs how they relate to the three Phases outlined above.
- -Our vision for Backstage is for it to become the trusted standard toolbox (read: UX layer) for the open source infrastructure landscape. Think of it like Kubernetes for developer experience. We realize this is an ambitious goal. We canβt do it alone. If this sounds interesting or you’d like to help us shape our product vision, we’d love to talk. You can email me directly: alund@spotify.com.
- -The Backstage platform consists of a number of different components:
- -packages/example-app) and you can easily get started with your own app by creating one.* not yet released
- -
-To run a Backstage app, you will need to have the following installed:
- - - -After cloning this repo, open a terminal window and start the web app using the following commands from the project root:
- -yarn install
-yarn start
-
-
-The final yarn start command should open a local instance of Backstage in your browser, otherwise open one of the URLs printed in the terminal.
And thats it! You are good to go π
- -Take a look at the Getting Started guide to learn more about how to extend the functionality with Plugins.
- -We would love your help in building Backstage! See CONTRIBUTING for more information.
- -Or, if you are an open source developer and are interested in joining our team, please reach out to foss-opportunities@spotify.com
- -Copyright 2020 Spotify AB.
- -Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
- - - diff --git a/plugins/circleci/src/pages/BuildsPage/lib/CITable/CITable.tsx b/plugins/circleci/src/pages/BuildsPage/lib/CITable/CITable.tsx index 8fa710e54f..d3f45a6414 100644 --- a/plugins/circleci/src/pages/BuildsPage/lib/CITable/CITable.tsx +++ b/plugins/circleci/src/pages/BuildsPage/lib/CITable/CITable.tsx @@ -1,11 +1,5 @@ import React, { FC } from 'react'; -import { - Link, - CircularProgress, - Typography, - Box, - IconButton, -} from '@material-ui/core'; +import { Link, Typography, Box, IconButton } from '@material-ui/core'; import { Replay as RetryIcon, GitHub as GithubIcon } from '@material-ui/icons'; import { Link as RouterLink } from 'react-router-dom'; import { @@ -13,6 +7,7 @@ import { StatusOK, StatusPending, StatusNA, + StatusRunning, Table, } from '@backstage/core'; import type { TableColumn } from '@backstage/core/src/components/Table'; @@ -46,7 +41,7 @@ const getStatusComponent = (status: string | undefined = '') => { case 'scheduled': return