Skip to content

Commit bcc44c4

Browse files
authored
Meteor updates (#1690)
* 👉 conclusion section to bottom * Minor tweaks
1 parent 4355ceb commit bcc44c4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

js/frameworks/meteor.html.markerb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Meteor is a full-stack JavaScript framework for building modern web and mobile a
1717
We'll start off by installing Meteor:
1818

1919
```cmd
20-
npx meteor@latest
20+
npx meteor
2121
```
2222
```output
2323
=> Arch: os.osx.arm64
@@ -32,7 +32,7 @@ We'll assume you have NodeJS installed already. Meteor 3 requires NodeJS v20 or
3232
Let's create the new project by running `meteor create`. We'll choose a "minimal" skeleton, which is a good choice for a new project and to get up and running quickly.
3333

3434
```cmd
35-
meteor create hello-meteor --minimal
35+
meteor create hello-meteor --minimal --release 3.0.0
3636
```
3737
```output
3838
Created a new Meteor app in 'hello-meteor'.
@@ -187,10 +187,10 @@ app 4d890d17a6d768 1 jnb stopped 2024-07-14T17:23:03Z
187187

188188
## _Connecting to the App_
189189

190-
The quickest way to browse your newly deployed application is with the `flyctl apps open` command.
190+
The quickest way to browse your newly deployed application is with the `fly apps open` command.
191191

192192
```cmd
193-
flyctl apps open
193+
fly apps open
194194
```
195195
```output
196196
Opening https://hello-meteor.fly.dev/
@@ -282,7 +282,7 @@ fly deploy
282282
And finally, open the app. It'll take a second longer on the first run while database migrations are performed:
283283

284284
```cmd
285-
flyctl apps open
285+
fly apps open
286286
```
287287

288288
That's it! You should see the app running:

0 commit comments

Comments
 (0)