sets up a dev folder and a separate install dependencies script

This commit is contained in:
SuperNovaa41 2024-01-24 18:56:40 -05:00
parent d002416131
commit 62450b5416
2 changed files with 16 additions and 5 deletions

9
dev/compile.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
./install-dependencies.sh
cd ../
make
npm run tauri dev

View File

@ -1,13 +1,15 @@
#!/bin/sh #!/bin/sh
make
cd bin/ cd ../
mkdir -p bin
cd bin
wget https://github.com/SuperNovaa41/isbn-lookup/releases/download/0.0.3/isbn wget https://github.com/SuperNovaa41/isbn-lookup/releases/download/0.0.3/isbn
chmod +x isbn chmod +x isbn
cd .. cd ../
npm install # setup NPM depedencies npm install
npm run tauri dev cd dev/