Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does anybody create installers to deploy internal asp.net web applications?

I've always deployed my web applications via FTP (sometimes even xcopy), and then manually run database scripts myself.

I started deploying this way in the 90's, but lately, I've seen a few web apps with installers. I'm starting to question, if I'm locked into an out dated process. I'm a consultant, my apps are usually internal, so I don't worry about distributing and having others installing them.

But I'm curious; does anybody create installers to deploy internal asp.net web applications?

If so, why? (Voluntarily, mandated, or part of an automation process)

And have you had any problems doing it this way?

like image 873
John MacIntyre Avatar asked Jan 28 '09 21:01

John MacIntyre


2 Answers

absolutely. We use it to do all of our apps. That way we create the installer and run it on the qa and uat environments to test and we know exactly what is going to happen in production. There are no guesses as to what order someone might do something in, or if they miss a step. It makes things a lot easier.

Ooh I forgot about the automated process too. We have systems in place (Ant Hill Pro) which automatically deploy it to the proper environments. The qa people don't have to wait for something to be done, because it's all done at 2 am. If they need to rerun the build with updates, the devs check the code in and we push a button, and it's automatically deployed. No waiting for the build engineer, because he's in a meeting or sick or whatever.

like image 88
kemiller2002 Avatar answered Sep 26 '22 07:09

kemiller2002


You always want to have an automated way to build and deploy - it greatly reduces the chances of a one-off error if you forget a certain step. Also, it allows you to offload the deploy to someone else easily without having to teach them 100 customized steps. Whether the project is internal or not, all applications should follow best practices.

like image 38
Tai Squared Avatar answered Sep 26 '22 07:09

Tai Squared