Skip to content

Commit

Permalink
feat: shell scripts for mac and linux
Browse files Browse the repository at this point in the history
  • Loading branch information
tutinoko2048 committed Nov 12, 2023
1 parent 55f6d04 commit 69479b4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh
clear

cd .

echo installing packages...
npm i
11 changes: 11 additions & 0 deletions start.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/sh
clear

cd .

if [ ! -d "node_modules" ]; then
./setup.sh
fi

echo starting...
npm run start

0 comments on commit 69479b4

Please sign in to comment.