I've deployed an application with:
meteor deploy a-meteor-app.meteor.com.
Is there a way for me to undeploy from meteor.com?
Suppose I have deployed an app on the url :- http://anotherajax.meteor.com/ .
Then, to remove this deployed app, Run this Command:-
meteor deploy --delete anotherajax.meteor.com
From the Documentation:
To delete an application you've deployed, specify the --delete option along with the site.
Related
I want to delete the app_offline page(app_offline.htm) from the root of the IIS application when the work completed.How to automate this deploy and delete the app offline page in iis directory.
I tried read some artciles about MSdeploy but could not get that .
Can we do it by running some commands to auto deploy and delete the app_offline page from the server root directory ?
Please help me on this. I found below two commands to run
msdeploy.exe –verb:sync
-source:contentPath="[Project folder]\App_offline.template.htm"
-dest:contentPath="[IIS application path]/App_offline.htm",
computerName="[Destination web server]"
for delete
msdeploy.exe –verb:delete
-dest:contentPath="[IIS application path]/App_offline.htm",
computerName="[Destination web server]"
But not get how to run the above commands
You can also try use cmd.exe, It is located at C:\Windows\System32\cmd.exe, more information you can refer to this link: Web Deploy (MSDeploy).
I have an application laravel as backend and vuejs as frontend separately. The problem is I don't know how to deploy this app to the server separately using apache server. I need help please provide me a detail instructions on how to do it. I have successfully deploy the laravel application api but I'm having trouble with the vuejs frontend also I'm using one ip address for this two application.
Thanks for your help.
Donnie.
It is very simple to deploy Vue SPA on the apache server.
Run this command in your project for production build
npm run prod
OR
yarn build
This command will create a dist folder in your Vue project.
project/dist/spa
spa folder contains index.html and other files (images,css and compiled js filed)
Give path of this index.html in your apache environment.
/etc/apache2/sites-available/your_project.conf
In ubuntu look like this.
eg /var/www/dist/spa
In ubuntu how we make the symbolic link
ln -s /your_project/dist /var/www/dist
I would like to deploy Meteor App to IIS or IIS Node in Windows.
Could you please help me?
I think that the only way to do that(not tested) is to build it meteor build . and then deploy it as a nodejs app http://www.hanselman.com/blog/InstallingAndRunningNodejsApplicationsWithinIISOnWindowsAreYouMad.aspx but probably you will have a "ton" of problems with nodejs dependencies.
How can i update a deployed app using meteor.
So i deploy my app using
meteor deploy xxxxxxx
and to delete i do
meteor deploy --delete xxxxxx
how can i update?
It is not in the command line help also
when i type
meteor deploy --help
I get
Options:
--delete, -D permanently delete this deployment
--debug deploy in debug mode (don't minify, etc)
--settings set optional data for Meteor.settings
--star a star (tarball) to deploy instead of the current Meteor app
Is your app hosted on meteor.com?
If so you only need to issue a
Meteor deploy XXXXX
Command again and it will update your app.
Meteor Deploy uses the same hotcode reload that the apps use.
Just refresh the web page where you're making the changes and the meteor server will make itself restart! :)
After you deploy a meteor app - let's say foo.meteor.com - can you rename the app URL?
Doesn't look like it, but you could always just delete it and deploy a new one:
meteor deploy --delete YOUR_APP
meteor deploy YOUR_NEW_APP
The Meteor command line doesn't have any command for renaming your deployed application.
But you can just deploy your application with a new name instead of the old one as:
meteor deploy new_app_name.meteor.com