From ee5f49b7a24607e88be3b75ed3209016c185db4e Mon Sep 17 00:00:00 2001 From: Bilawal Hameed Date: Fri, 7 Feb 2020 11:55:26 +0100 Subject: [PATCH] added Makefile --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000..74d4b0ac8e --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +### +# All-in-one build command. +### +build: build-protocol-definitions + +### +# Protobuf Definitions. +# This will generate Protobuf definitions from ./proto to both Go and JS/TypeScript. +### +build-protocol-definitions: + prototool generate ${PWD}/proto + +### +# Create new frontend plugin. +# This will run Cookiecutter to generate a new Backstage frontend plugin. +### +scaffold-new-frontend-plugin: + ${PWD}/tools/cookiecutter/init.sh frontend/packages/plugins/_template --output-dir frontend/packages/plugins \ No newline at end of file