This repository was archived by the owner on Feb 26, 2021. It is now read-only.
Easy coding in online dev environment#275
Open
svenefftinge wants to merge 1 commit intometeor:masterfrom
Open
Conversation
|
@svenefftinge: Thank you for submitting a pull request! Before we can merge it, you'll need to sign the Meteor Contributor Agreement here: https://contribute.meteor.com/ |
Author
|
You can try the configuration on this PR |
Author
|
I have signed the CLA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 installfollowed bymeteorQuestion:
meteorbuilds 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 builddidn'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 runwould work immediately.