https://github.com/rhecosystemappeng/app-eng-backstage
This repo is expected to hold the app engineering team's specific backstage instance code with our plugins.
https://github.com/rhecosystemappeng/app-eng-backstage
Last synced: about 1 year ago
JSON representation
This repo is expected to hold the app engineering team's specific backstage instance code with our plugins.
- Host: GitHub
- URL: https://github.com/rhecosystemappeng/app-eng-backstage
- Owner: RHEcosystemAppEng
- Created: 2023-09-29T16:41:29.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-25T20:13:14.000Z (over 2 years ago)
- Last Synced: 2025-02-15T02:15:18.717Z (over 1 year ago)
- Language: TypeScript
- Size: 984 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [App Engineering Backstage](https://github.com/RHEcosystemAppEng/app-eng-backstage)
Backstage app for App Engineering team.
To start the app, run:
To start the application, execute:
```sh
yarn install
yarn tsc
yarn dev
```
# Building the docker image.
Our attempt to use Podman for building the image has been unsuccessful, so we're considering Docker. However, Docker Desktop needs a commercial license, so we are going to use an alternate free version `colima` with docker CLI. Please go through [docker setup with Colima](https://dev.to/elliotalexander/how-to-use-docker-without-docker-desktop-on-macos-217m).
Execute the below command to build and push the docker image.
```shell
make image/build
```
### Known Issues or Help
If you run into an issue ```The command '/bin/sh -c yarn install' returned a non-zero code: 137``` while building the docker image increase memory using the below command.
```shell
colima start --cpu 4 --memory 8 --disk 30
```