Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Dec 5, 2024
1 parent f0434e0 commit c21393b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/user-guides/deploy-to-prod.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit c21393b

Please sign in to comment.