mirror of
https://github.com/wassname/options_backtester.git
synced 2026-06-27 19:15:45 +08:00
14 lines
227 B
Makefile
14 lines
227 B
Makefile
.PHONY: migration run install_diesel_cli release
|
|
|
|
migration:
|
|
diesel migration run
|
|
|
|
run:
|
|
cargo run
|
|
|
|
install_diesel_cli:
|
|
cargo install diesel_cli --no-default-features --features sqlite chrono
|
|
|
|
release:
|
|
cargo build --release
|