yonatan
yonatan

Reputation: 615

how to specify Meteor requirements?

what is the convention for specifying meteor requirements? if for example I want to add to a github repository. for other to easily deploy. some thing like python requirements.txt.

Upvotes: 1

Views: 130

Answers (1)

Dan Barbarito
Dan Barbarito

Reputation: 480

The requirements are located in the .meteor/ directory in the packages file. Simply add the .meteor/ directory to your git repository and the requirements will automatically be downloaded when the user runs meteor.

Upvotes: 4

Related Questions