active questions tagged automated-deploy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T05:39:40Z http://stackoverflow.com/feeds/tag/automated-deploy http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1832101/is-there-a-perl-or-lua-alternative-to-capistrano 7 Is there a Perl or Lua alternative to Capistrano? Htbaa 2009-12-02T10:41:53Z 2009-12-04T18:24:30Z <p>For a number of web-applications I need something like Capistrano to automate deployment. I know Capistrano can be used to deploy non-ruby applications but I'm not familiar with Ruby, so I expect writing deployment configurations can be a bit of a pain.</p> <p>So I was wondering, are there any alternatives to Capistrano written in either Perl of Lua?</p> <p>Also, forgot to mention, the platform running the deployments is Windows (XP). So Capistrano is already more or less out of the question. Although I found out it can run with the MINGW32 Bash shell that comes with Git for Windows.</p> http://stackoverflow.com/questions/1180411/activate-a-virtualenv-via-fabric-as-deploy-user 4 Activate a virtualenv via fabric as deploy user rizumu 2009-07-24T22:03:57Z 2009-11-26T19:01:30Z <p>I want to run my fabric script locally, which will in turn, log into my server, switch user to deploy, activate the projects .virtualenv, which will change dir to the project and issue a git pull.</p> <pre><code>def git_pull(): sudo('su deploy') # here i need to switch to the virtualenv run('git pull') </code></pre> <p>I typically use the workon command from virtualenvwrapper which sources the activate file and the postactivate file will put me in the project folder. In this case, it seems that because fabric runs from within shell, control is give over to fabric, so I can't use bash's source built-in to '$source ~/.virtualenv/myvenv/bin/activate'</p> <p>Anybody have an example and explanation of how they have done this?</p> <h1># # # response # # #</h1> <p>Thanks bitprophet, that led down the right track. Using fabric 1.0 we ended up going with the following fabfile recipe which includes a call to pip requirements file:</p> <pre><code>def production(): env.hosts = ['servername'] env.directory = '/path/to/virtualenvs/project' env.activate = 'source /home/deploy/.virtualenvs/project/bin/activate' env.deploy_user = 'deploy' def virtualenv(command): with cd(env.directory): sudo(env.activate + '&amp;&amp;' + command, user=env.deploy_user) def git_pull(): 'Updates the repository.' with cd(env.directory): sudo('git pull', user=env.deploy_user) def pip_install_req(): virtualenv('pip install -U -r ../../../requirements/external_apps.txt') def reload(): sudo('/etc/init.d/apache2 reload') def deploy_pip(): local('git push') git_pull() pip_install_req() reload() </code></pre> http://stackoverflow.com/questions/1183600/what-tool-should-i-use-to-automate-my-deployment-of-my-asp-net-mvc-application 4 What tool should I use to automate my deployment of my ASP.NET MVC application? Simucal 2009-07-26T02:41:53Z 2009-11-18T08:03:23Z <p>I've written a site for my summer internship using ASP.NET MVC. The progress is going well but one thing I have found painful is deployments. Particularly, because we have frequent deployments and I've been doing them by hand.</p> <p>I'm looking for sort of the "standard" .NET deployment tool that can be utilized with an ASP.NET MVC project to automate our deployment process.</p> <p>Some things I would like the tool to be able to do (that I do manually now):</p> <ul> <li>Set compile mode to "Release"</li> <li>Publish my ASP.NET MVC Web Application project</li> <li>Ensure debug mode = "Off" in my Web Config</li> <li>Change the connection strings for our database from dev db to prod db's info</li> <li>Transfer the Website to the web server</li> <li>Ideally, it would be nice if it stopped the IIS site and replaced the existing site with the new files, then restarted it.</li> </ul> <p>Given sort of these soft requirements, what tool would you suggest I use to tackle this problem? I'm using II7 if it matters.</p> http://stackoverflow.com/questions/1682671/automatic-deployment-to-multiple-production-environments 0 Automatic Deployment to Multiple Production Environments Brandon Montgomery 2009-11-05T18:40:57Z 2009-11-06T00:49:39Z <p>I want to update an ASP .NET web application (including web.config file changes and database scripts) to multiple production environments - ideally with the click of a button. I do not have direct network connectivity to any of them. I think this means the application servers will have to "pull" the information required for updating the application, and run a script to update the application that resides on the server.</p> <p>Basically, I need a way to "publish" an update, and the servers see that update and automatically download and run it.</p> <p>I've thought about possibly setting up an SFTP server for publishing updates, and developing a custom tool which is installed on production environments which looks at the SFTP server every day and downloads application files if they are available. That would at least get the required files onto the servers, and I could use xcopy/robocopy and Migrator.NET to deploy the updates. Still not sure about config file changes, but that at least gets me somewhere.</p> <p>Is there any good solution for this scenario? Are there any tools that do this for you?</p> http://stackoverflow.com/questions/1649975/how-to-test-jboss-deployment-automatically 2 How to test JBoss deployment automatically? Max 2009-10-30T14:00:04Z 2009-11-01T04:18:16Z <p>I have jboss application. And want to test deployment automatically. And want to add this task as a project in <a href="http://hudson-ci.org/" rel="nofollow">Hudson</a></p> <p>My vision is based on the following stages:</p> <ol> <li>Put my application to JBoss(copy ears, configs, libs e.t.c)</li> <li><p>Run JBoss</p> <p>I have a Linux-machine and now our project is require JBoss 4.3.2. How can I run the JBoss and analyze results. Is my application deployed fully and successfully or not?</p></li> <li><p>Run some standalone tests</p></li> <li>Stop JBoss</li> </ol> http://stackoverflow.com/questions/306233/how-to-programatically-change-a-projects-product-version 4 How to programatically change a project's product version? El Padrino 2008-11-20T17:55:07Z 2009-10-16T23:11:39Z <p>Here is my problem:</p> <p>I have several deployment projects. In order to deploy an application, I need to do several tasks, one of them is to change each deployment project's product version and product code.</p> <p>I can't find a way to programatically change them.</p> <p>Can anyone help me ?</p> <p>Thanks in advance.</p> <p>UPDATE: Since it's a Deployment project (which finally produces an executable installer), I'm not able to work with MSBuild, instead I'm using the Devenv from the command prompt. (Bruno, thanks for your quick response).</p> http://stackoverflow.com/questions/1463186/deploying-a-website-to-production-from-team-build-server 0 Deploying a website to Production From Team Build Server Stephen lacy 2009-09-22T23:32:29Z 2009-09-30T09:47:37Z <p>I have a team foundation server with build server, when I run a build it deploys to a website on that box. However I also want to do the same on Production which is a server on an external network and not part of the same domain.</p> <p>I thought about looking at TFS Deployer but that just seemed to work within a network, I'm going to test it out as soon as I get a chance but I thought the best idea was to ask here when working with something so critical.</p> <p>Is it a really bad idea to have a way of easily deploying to production?</p> <p>Does anyone here deploy to production using whatever method? How do you do it?</p> <p>Essentially the accepted answer will go to the person who can tell me the best method for achieving a deployment but pointing me in the right direction is sure to get an up vote as long as it's not too obvious.</p> http://stackoverflow.com/questions/1045300/upgrade-an-existing-application-to-include-clickonce 1 Upgrade an existing application to include ClickOnce pufferfish 2009-06-25T17:53:46Z 2009-08-02T18:29:56Z <p>Is it possible to introduce ClickOnce functionality to an existing application?</p> <p>The scenario is: Version 1.0 is already installed on client premises. I would like to send them a new setup package which will upgrade to 1.1, which has ClickOnce functionality, thereby making future upgrades "effortless".</p> <p>Barring that, are there any other solutions to this sort of problem?</p> <p>p.s. The original application was developed with VS2005 (i.e. NET 2.0). I'm using VS2008 now.</p> http://stackoverflow.com/questions/249657/how-do-i-copy-built-artifact-to-a-directory-on-remote-windows-server-in-maven-dep 0 How do I copy built artifact to a directory on remote Windows server in maven deploy phase? Petr Macek 2008-10-30T09:26:10Z 2009-07-30T22:46:13Z <p>Hello, could someone provide working example (full maven plugin configuration) how to copy built jar file to a specific server(s) at the time of deploy phase?</p> <p>I have tried to look at wagon plugin, but it is hugely undocumented and I was not able to set it up. The build produces standard jar that is being deployed to Nexus, but I need to put the jar also to the test server automatically over local network (\someserver\testapp\bin).</p> <p>I will be grateful for any hints.</p> <p>Thank you</p> http://stackoverflow.com/questions/1153032/questions-about-default-deploy-task-in-capistrano-for-php-project-and-config-php 1 Questions about default deploy Task in Capistrano for PHP project and config.php Guillermo 2009-07-20T11:33:32Z 2009-07-20T15:57:54Z <p>Hello All,</p> <p>I'm having a full day understanding the use of Capistarno. Is really a nice tool that will save me lots of time. I'm actually wanting to use it to deploy one of my many php apps :)</p> <p>If I have a config.php with an $env="development" variable. Is there any way to make Capistrano change this variable for me to "production" instead? Or I should forget about it and symlink it to shared? </p> <p>cheers Guillermo</p> http://stackoverflow.com/questions/231283/automatic-deployment-resources 3 Automatic Deployment Resources Esteban Araya 2008-10-23T20:07:23Z 2009-07-13T19:23:10Z <p>I know enough to know that we need to get our application to deploy with a single user action. However, I <strong>don't</strong> know:</p> <ol> <li>What are some good tools to use in a .NET shop?</li> <li>How do you manage config changes for each of your environments?</li> </ol> <p>Can someone point me to some good resources for continous integration. I'd like to see some theory as well as a step by step practical guide.</p> <p><strong>Edit:</strong><br /> I'm in need to automated a web deployment right now; however, I'd also like to learn how to do this for desktop apps.</p> http://stackoverflow.com/questions/657237/what-are-good-code-deployment-strategies 1 What are good code deployment strategies? Maddy 2009-03-18T07:26:13Z 2009-06-09T22:24:07Z <p>I am working on a Django project. And our team follows agile practices(TDD,very short launch times etc..) </p> <p>When it comes to deployment stage of a feature, we follow manual procedures to get the code deployed on to our production machine. Manual procedures in the sense, run the testcases(of the entire project) manually and run the syncdb(or any latest db changes) manually and other stuff. </p> <p>This manual stuff is taking about half and hour per day,everyday. So I wanted to automate this. So is there any automatic deployer or something that takes the commands I give and do what I want or it should be done only MANUALLY??(using a simple shell file which has got all my commands. In which case, I need to learn shell programming a bit because I dont want to uupdate my latest code in my production machine if any test case fails. So such a sort of conditions exist for deploying, which may involve a bit of shell programming. I guess!)</p> http://stackoverflow.com/questions/749357/recommend-a-phing-tutorial 0 Recommend a Phing tutorial? patricksweeney 2009-04-14T21:01:23Z 2009-04-14T21:20:31Z <p>I've seen a few tutorials about Phing out there, but does anyone have a really good recommendation for one. It definitely looks like a handy tool.</p> http://stackoverflow.com/questions/545730/tool-or-combination-of-tools-for-reproducible-environments-in-python 7 Tool (or combination of tools) for reproducible environments in Python Sam 2009-02-13T12:20:56Z 2009-03-26T14:21:50Z <p>I used to be a java developer and we used tools like ant or maven to manage our development/testing/UAT environments in a standardized way. This allowed us to handle library dependencies, setting OS variables, compiling, deploying, running unit tests, and all the required tasks. Also, the scripts generated guaranteed that all the environments were almost equally configured, and all the task were performed in the same way by all the members of the team. </p> <p>I'm starting to work in Python now and I'd like your advice in which tools should I use to accomplish the same as described for java.</p> http://stackoverflow.com/questions/629024/asp-net-automated-deployment-to-remote-ftp-server 0 ASP.NET Automated deployment to remote ftp server Nathan Totten 2009-03-10T05:30:34Z 2009-03-10T06:10:13Z <p>Does anyone know any good solutions for automated deployment to a remote server using SFTP? I am specifically trying to deploy an asp.net mvc website to mosso. I can do it manually every time using an SFTP client, but would much rather have an automated (and consistent) way to do this.</p> http://stackoverflow.com/questions/588321/can-system-environment-variables-be-set-via-windows-logon-scripts 0 Can system Environment Variables be set via Windows Logon Scripts? Matthew McCullough 2009-02-25T23:02:50Z 2009-03-04T12:17:44Z <p>I have an MSI-packaged application that is being deployed via Group Policy Objects (GPO) from a Windows 2003 Domain Server to all the XP client machines in the network.</p> <p>This application reads two environment variables for its configuration (which server IPs to talk to) and it seems like we'd also want to push this configuration via a GPO style setting or Login script to all the desktops.</p> <p>What is the best approach for setting environment variables across a network of desktops?</p> http://stackoverflow.com/questions/416573/deployment-tools-under-net-solutions 2 deployment tools under .NET solutions balexandre 2009-01-06T13:48:16Z 2009-01-06T14:16:01Z <p>Hi guys,</p> <p>We all do code, small (like one .exe) or big applications (complete solutions) with web applications, windows applications, databases, help files, configuration files and registry values...</p> <p>my question is simple, in my opinion that is, now that I need to deploy a web application and a windows application in just one installation setup:</p> <blockquote> <p>What do you use to the deployment of your applications, regarding creating of <strong>help files</strong>, database scripts so we can <strong>create a database and tables</strong>, create a <strong>virtual directory</strong> for the web applications, add <strong>registry values</strong> to work with our windows application?</p> </blockquote> <p>I just open Setup &amp; Deployment from Visual Studio 2008, but is it me or it lack a lot of such features? is there any thing worst a try out there for this?</p> <p>I know <a href="http://www.innosetup.com/" rel="nofollow">Inno Setup</a> that they use here in the company, but it does not do all, any good tutorial that I should see? In my search I found out <a href="http://www.visualstudiogallery.com/Results.aspx?CategoryId=3f790e6a-d276-4f61-9f44-e99dda83288c" rel="nofollow">some products</a> in <a href="http://www.visualstudiogallery.com/" rel="nofollow">Visual Studio Gallery</a>, but none does all-in-one :(</p> <p>Thank you.</p> http://stackoverflow.com/questions/241866/how-can-i-centralize-an-entire-website-engine 3 How can I centralize an entire website engine? Jade 2008-10-28T00:41:42Z 2008-10-28T01:29:13Z <p>Prefer responses via php or ROR if possible!</p> <p><strong>Example:</strong></p> <blockquote> <p>The slide widget at www.slide.com can be deployed anywhere on the web. But the slide developers have centralized edit capabilities to these widgets. A change to the widget core, will update across all installed widgets.</p> </blockquote> <p>Can this be done with an entire website engine?</p> <blockquote> <p>Say I coded the Wordpress engine. Is it possible for me to deploy my engine on my customers own servers at their own domain while still being able to control/update/edit the core and have it update all my clients engines.</p> </blockquote> <p>The main reason is for clients to have ownership of their content and brand. A customer may need to establish his online presence and so he needs his own domain, but he still can pay a service to have his engine professionally managed and upkept.</p> http://stackoverflow.com/questions/181342/automated-msi-installation 1 Automated MSI installation Luke Quinane 2008-10-08T04:29:53Z 2008-10-08T05:09:20Z <p>What is the best way to automatically install an MSI file or installer .exe? We want to do some automated testing from our build system on the installed copy of the product. Our installer has the usual license acceptance screen, install location, etc.</p> <p><hr /></p> <p>As FryHard pointed out there are two options in particular that seem handy:</p> <ul> <li>"/quiet" - no use interaction</li> <li>"/passive" - process bar only, unattended mode</li> </ul> http://stackoverflow.com/questions/150047/msbuild-getting-the-target-called-from-command-line 3 MSBuild - Getting the target called from command line ferventcoder 2008-09-29T18:40:23Z 2008-09-30T16:04:10Z <p>Does anyone know how to get the name of the TARGET (/t) called from the MSBuild command line? There are a few types of targets that can be called and I want to use that property in a notification to users.</p> <p>Example:</p> <p>msbuild Project.proj <strong>/t:ApplicationDeployment</strong> /p:Environment=DEV</p> <p>I want access to the target words <strong>ApplicationDeployment</strong> in my .Proj file. </p> <p>Is there a property I can access? Any clue how to do this?</p> <p><strong>EDIT:</strong> I do not want to have to also pass in a property to get this.</p> <p><strong>UPDATE:</strong> This is based on <strong>deployment scripts</strong> using MSBuild scripts. My build server is not used for deploying code, only for building. The build server itself has build notifications that can be opted into.</p>