Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Own a subdomain on meteor.com

Tags:

meteor

If I publish my app to a subdomain, eg: spartan.meteor.com do I own the subdomain or can some other user take it from me? If I can own it, is there some documentation around it?

like image 558
Spartan Avatar asked Apr 11 '12 20:04

Spartan


2 Answers

You can set a deploy password for your app.

$ meteor deploy -P spartan.meteor.com

Any future deploy (or request for logs) will require the same password.

like image 186
debergalis Avatar answered Oct 21 '22 04:10

debergalis


As an update:

As of Meteor v0.7.1, this is no longer relevant. If you don't yet have a meteor developer account, meteor deploy <site> will prompt you for your email address and send you a link to create a password. Then they have some functionality around authorizing other users to collaborate on your app.

like image 13
colllin Avatar answered Oct 21 '22 02:10

colllin