diff --git a/docs/docs/user-guides/deploy-to-prod.md b/docs/docs/user-guides/deploy-to-prod.md index b16f378..485bcce 100644 --- a/docs/docs/user-guides/deploy-to-prod.md +++ b/docs/docs/user-guides/deploy-to-prod.md @@ -22,12 +22,12 @@ The Rwf CLI can package your application with a single command: created build.tar.gz ``` -This will build your application in release mode and bundle the binary, templates, static files and migrations into a single archive called `bundle.tar.gz`. +This will build your application in release mode and bundle the binary, templates, static files and migrations into a single archive called `bundle.tar.gz`. Since Rust applications are compiled, they don't require any additional dependencies to run. You can copy the bundle onto your production machine(s), untar it and run the app: ```bash -tar xvf bundle.tar.tz +tar xvf bundle.tar.gz ./app ```