Update and rename helper scripts

This commit is contained in:
Lucas Dower 2023-10-10 20:58:45 +01:00
parent 87facde6eb
commit 16cc8290c9
4 changed files with 16 additions and 0 deletions

3
run_editor.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
cd Editor
npm start

13
run_install_all.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
echo "Installing Core..."
cd Core
npm install
echo "Installing Editor..."
cd ../Editor
npm install
echo "Installing Sandbox..."
cd ../Sandbox
npm install