Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apicurio/backstage
app-services-backstage
https://github.com/apicurio/backstage
Last synced: 2 months ago
JSON representation
app-services-backstage
- Host: GitHub
- URL: https://github.com/apicurio/backstage
- Owner: Apicurio
- Created: 2022-07-12T14:36:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-28T14:45:39.000Z (over 1 year ago)
- Last Synced: 2024-04-23T14:29:50.414Z (9 months ago)
- Language: TypeScript
- Size: 4.94 MB
- Stars: 3
- Watchers: 6
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# App Services [Backstage](https://backstage.io)
Backstage for Application Services
## Running Locally
To start the app, run:
```sh
# Create venv, activate it, and install requirements
python3.10 -m venv .env && source .env/bin/activate && pip install -r requirements.txt
# build
yarn install
# you need to specify the Registry endpoint
# to bring up a temporary in-memory one:
# podman run -it -p 8080:8080 apicurio/apicurio-registry-mem:latest-release
APICURIO_ENDPOINT="http://localhost:8080" yarn dev
```## Build pre-requisites on Fedora
```sh
# you need to install python3.10 and pass a reference to GYP to use it
sudo dnf install pypy2 pypy3.9 python3.10 libuv-devel brotli-devel
export NODE_GYP_FORCE_PYTHON=/usr/bin/python3.10yarn install
```
## Building for production
```bash
yarn tsc
yarn build
```## Docker image
```bash
docker build . --tag backstage
```