From f037d3f405fa4951bd2311f2fd567d822941e35c Mon Sep 17 00:00:00 2001 From: jakubmanczak Date: Wed, 29 Oct 2025 23:23:39 +0100 Subject: [PATCH] [78] correct readme in regards to sqlx migrate cmd --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 97147b8..7177571 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Set the following environment variables, via `.env` or your shell: - `FRONTEND_ORIGIN` will be used as an allowed [origin](https://developer.mozilla.org/en-US/docs/Glossary/Origin) for the purpose of [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS). Must be a valid URL. Start the database with `docker compose --profile dev (up -d/down)`. -Run the migrations via sqlx-cli with `sqlx run migrate` or by other means. +Run the migrations via sqlx-cli with `sqlx migrate run` or by other means. Compile and run the project with `cargo`.