Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo on rails getting-started #1737

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rails/getting-started/index.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
### Launch

To configure and launch the app, you can use `fly launch` and follow the
wizard. This demo does not need a database or redis.

Check warning on line 73 in rails/getting-started/index.html.md

View workflow job for this annotation

GitHub Actions / Vale linter

[vale] reported by reviewdog 🐶 [Fly.Spelling] Is 'redis' a typo? Raw Output: {"message": "[Fly.Spelling] Is 'redis' a typo?", "location": {"path": "rails/getting-started/index.html.md", "range": {"start": {"line": 73, "column": 48}}}, "severity": "INFO"}

```cmd
fly launch
Expand All @@ -93,7 +93,7 @@
```

For demo purposes you can accept the defaults. You can always change these later.
So respond with "Y" (or simply press enter).
So respond with "N" (or simply press enter).

This will take a few seconds as it uploads your application, builds a machine image,
deploys the images, and then monitors to ensure it starts successfully. Once complete
Expand Down Expand Up @@ -129,7 +129,7 @@
* `fly dashboard` can be used to monitor and adjust your application. Pretty
much anything you can do from the browser window you can also do from the
command line using `fly` commands. Try `fly help` to see what you can do.
* `fly ssh console` can be used to ssh into your VM. `fly console` can be used to open a rails console.

Check failure on line 132 in rails/getting-started/index.html.md

View workflow job for this annotation

GitHub Actions / Vale linter

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'SSH' instead of 'ssh'. Raw Output: {"message": "[Vale.Terms] Use 'SSH' instead of 'ssh'.", "location": {"path": "rails/getting-started/index.html.md", "range": {"start": {"line": 132, "column": 10}}}, "severity": "ERROR"}

Now that you have seen how to deploy a trivial application, it is time
to move on to [The Basics](../../rails/the-basics/).
Loading