Cleaned up the wording about visiting the running app.

This commit is contained in:
Aaron Rosenzweig
2025-10-14 21:25:12 -04:00
parent 8c3edc5c6c
commit 90a5db12e4

View File

@@ -122,7 +122,7 @@ Template.mainContainer.helpers({
Adding a helper to the `mainContainer` template, you are able to define the array of tasks. When the app starts, the client-side entry-point will import the `App.js` file, which will also import the `App.html` template we created in the previous step.
At this point you can visit meteor should still be running on port 3000 so you can visit the running app and see your list with three tasks displayed at [http://localhost:3000/](http://localhost:3000/) - but if meteor is not running, go to your terminal and move to the top directory of your project and type `meteor` then press return to launch the app.
At this point meteor should be running on port 3000 so you can visit the running app and see your list with three tasks displayed at [http://localhost:3000/](http://localhost:3000/) - but if meteor is not running, go to your terminal and move to the top directory of your project and type `meteor` then press return to launch the app.
All right! Lets find out what all these bits of code are doing!