2024-03-16 15:45:32 +00:00
|
|
|
|
|
|
|
run:
|
|
|
|
SECURE_SESSIONS=false RUST_LOG=debug cargo run -- --reload-templates
|
|
|
|
|
2024-05-09 16:15:19 +00:00
|
|
|
run-watch:
|
|
|
|
SECURE_SESSIONS=false RUST_LOG=debug cargo watch --why -x 'run -- --reload-templates'
|
|
|
|
|
2024-03-16 15:45:32 +00:00
|
|
|
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
|