mirror of
https://github.com/rzuasti/oott.git
synced 2026-07-08 19:21:54 +02:00
Add run.sh script to start the backend (erases db, runs cargo with sudo using user's CARGO_HOME to avoid full recompilation). Remove sudo from cargo test in run_tests.sh for the same reason. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
4 lines
68 B
Bash
Executable File
4 lines
68 B
Bash
Executable File
#!/bin/sh
|
|
sudo rm -f oott.db
|
|
sudo CARGO_HOME=$HOME/.cargo cargo run
|