Hello ,
I am folllowing this link http://www.angular-meteor.com/tutorials/whatsapp/ionic/bootstrapping for creating my ionic application.
I have tested the app on localhost:3000 now I need to move my app to http://myapp.meteor.com [ live url hosted on meteor ].
How can i do this ?
You’re in luck. You go to the directory where you typed:
meteor
to start your app on localhost:3000 and, instead of that, type
meteor deploy myapp
Although you might have to replace myapp
with something more original, because that name is probably already taken on meteor.com
.
Hi @babrahams
I set the url myapp.meteor.com only for example , my actual url is http://scheduler36.meteor.com/.
Actually I am using this https://github.com/idanwe/meteor-client-side to connect with meteor server.
I found the solution for changing the URL from the README.md from git repo.
@babrahams thanks for help. 