Create build script

This commit is contained in:
Yash Karandikar 2022-01-31 11:21:07 -06:00
parent 61f0eeb5c1
commit 2671f1d940
2 changed files with 6 additions and 1 deletions

3
.gitignore vendored
View file

@ -1,3 +1,4 @@
/target
**/dist/*
bugspray.sqlite3
*.sqlite3
*.db

4
build.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
cd app && trunk build && cd ..
cargo build