include .env export API_URL # So the client can use it export RUST_LOG # Migrations should be written first and the model files can be created using this command db_entities: cd server && \ sea-orm-cli generate entity --database-url $(DATABASE_URL) -o src/model --with-serde both server-dev: cargo run --bin server tailwind: cd client && \ tailwindcss -i static/style.css -o static/tailwind.css -w serve: cd client && \ perseus serve -w client-deploy: cd client && \ perseus deploy test-client: cd client && \ perseus test -w test-server: cd server && \ cargo test test-client-cargo: cd client && \ PERSEUS_RUN_WASM_TESTS=true cargo test -- --test-threads 1