docs: remove migration command from README

Migrations are now automatically handled at server startup, so the
manual 'cargo run --bin migrate --features migrations' step is no
longer needed.
This commit is contained in:
George Wu
2026-02-25 08:59:01 -08:00
parent d2e6dbdee6
commit bb304d3f5b
+1 -2
View File
@@ -121,8 +121,7 @@ echo "DATABASE_URL=postgres://user:pass@localhost/oxicloud" > .env
# Build optimised binary
cargo build --release
# Run migrations and start
cargo run --bin migrate --features migrations
# Start the server (migrations run automatically)
cargo run --release
```