From 75384b5e256f3c36b37c49b65119c1c36058175b Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 17 Jan 2023 00:06:12 -0500 Subject: [PATCH] add build environment setup script --- setup | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 setup diff --git a/setup b/setup new file mode 100755 index 00000000..4318b6c5 --- /dev/null +++ b/setup @@ -0,0 +1,7 @@ +#!/bin/bash + +npm ci --ignore-scripts + +python -m venv --clear venv +source venv/bin/activate +pip install --require-hashes --only-binary :all: -r requirements.txt