This repository has been archived by the owner on Feb 26, 2021. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds config to run the Todo app in Gitpod a free online dev environment.
I was helping a user to use Meteor in Gitpod and thought you might be interested in this as well. It will allow anyone to start coding on the example app with a single click.
I configured it so that at start it first runs
meteor npm install
followed bymeteor
Question:
meteor
builds the project which takes some time but opens the port immediately. Gitpod listens on ports and opens the preview panel, which then times out because meteor needs a lot of time fro building the app. Is there a command I could run that would do the build?meteor build
didn't seem to do the same or I wasn't using the right parameters. Ideally I'd like to have a separate command that builds the app, so thatmeteor run
would work immediately.