Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify Backend Commands #495

Merged
merged 2 commits into from
Aug 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ setup-dev:
test -f .env || cp .env.template .env
# Check if /dist folder exists for Tauri and if not create it
mkdir -p ./crates/tauri/dist
# Build backend to copy binaries for Tauri
make build-backend

# Specifically for debian based distros
setup-dev-linux:
Expand All @@ -106,6 +108,9 @@ setup-dev-linux:
libsdl2-dev \
clang

run-backend-dev:
cargo run -p spyglass

run-client-dev:
cargo tauri dev

Expand Down