16 lines
No EOL
266 B
Makefile
16 lines
No EOL
266 B
Makefile
set windows-shell := ["pwsh.exe", "-NoLogo", "-Command"]
|
|
|
|
_default:
|
|
@just --list
|
|
|
|
# Setup the database
|
|
setup:
|
|
sqlx db setup
|
|
|
|
# Exessive clippy lints
|
|
lint:
|
|
cargo clippy --locked -- -W clippy::pedantic -W clippy::nursery
|
|
|
|
push:
|
|
git push
|
|
git push gh
|