16 lines
326 B
Makefile
16 lines
326 B
Makefile
|
|
||
|
run:
|
||
|
SECURE_SESSIONS=false RUST_LOG=debug cargo run -- --reload-templates
|
||
|
|
||
|
run-release:
|
||
|
SECURE_SESSIONS=false RUST_LOG=info cargo run --release
|
||
|
|
||
|
css-watch:
|
||
|
npx tailwindcss -i ./src/main.css -o ./static/main.css --watch
|
||
|
|
||
|
migrate:
|
||
|
sea-orm-cli migrate
|
||
|
|
||
|
entities:
|
||
|
sea-orm-cli generate entity -o src/entity --with-serde both
|