From 94f70bde1e7930f9eb2f96487dac202a69e8644d Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Mon, 3 Feb 2020 00:07:35 +0100 Subject: [PATCH] frontend: added basic readme --- frontend/README.md | 49 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 frontend/README.md diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000000..5c288e4d59 --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,49 @@ +# Backstage Frontend + +## Usage + +Serve app: + +```bash +yarn serve +``` + +Build app: + +```bash +yarn build +``` + +Run all tests: + +```bash +yarn test +``` + +Lint project: + +```bash +yarn lint +``` + +Test a single package: + +```bash +cd packages/plugins/hello-world + +yarn test +``` + +## Structure + +### `packages/app` + +Example application with a standard plugin wiring. + +### `packages/core` + +Core API package. + +### `packages/plugins/*` + +Plugins go here