automated-deploy

Componentization of web project

I have been working on spring-mvc for last 3 months and its been lot productive compared to my earlier work. I kept adding lot of featuers in the web application and now am stuck with the simple problem. All the features I have added wont be used in all deployments and I need to figure out a way to exclude some features at the time of d...

using msbuild to create a sql database

Is there a good tutorial for Creating a database using msbuild? jean paul boodhoo does it using nant in this post. he sets properties to be used in an nant build file <properties> <property name="sqlToolsFolder" value="C:\Program Files\Microsoft SQL Server\90\Tools\Binn"/> <property name="osql.ConnectionString" value="-E"/> <pr...

Automatic Deployment of ASP.Net MVC using TFS2010 Beta2

Hi to everyone, i am building an Asp.NET MVC web site, and i want to make the deployment to IIS automatically as part of the build process, as indicated in the title, i am using vs2010 beta2 with tfs2010 beta2, and the dev server is running widows server 2008 service pack2, wich means IIS 7. so can anyone provide with set-by-step way on ...

how to detect modified properties using SVN log

Background: writing an automated release script to export changed files between versions from SVN and upload to remote server. The svn log command shows modified files and properties, but seems to not distinguish its verbose output between a content modification over property modifications. Am I reading this output wrong, or is there a...

What is a good build automation and deployment process for use with asp.net?

I’m looking for some recommendations to do project building and deployment automatically. Our current development setup uses ASP.NET, SVN, CCNET and an MSBuild script for the dev server build. I was thinking of switching over to Cruise instead of CCNET though I’m not sure if that gives me anything extra that I don’t have already. What ...

.NET Deployment Framework

Many people use Nant or Powershell for deployment of their apps to different servers/environments. These are based on scripting while some solutions allow deployment to be embedded in code like Migrator.Net and other Ruby inspired Db deployment/migration frameworks in .NET. I was wondering if there are any frameworks for .NET for appli...

Php deployment to remote server using FTP from SVN after each commit

I coudn't find the solution for Php deployment to remote server using FTP from SVN after each commit. How can I upload to server by FTP the only added or edited files and delete the deleted files from SVN I think about write post-commit script... ...

How to avoid chaotic ASP.NET web application deployment?

Ok, so here's the thing. I'm developing an existing (it started being an ASP classic app, so you can imagine :P) web application under ASP.NET 4.0 and SQLServer 2005. We are 4 developers using local instances of SQL Server 2005 Express, having the source-code and the Visual Studio database project This webapp has several "universes" (t...

Vlad the deployer on Dreamhost - initial script

Hi, I'm trying to deploy an app with SVN and Vlad the deployer. Vlad and its dependencies are installed and seem OK. I'm trying the following: rake prod vlad:update Being my config/deploy.rb file: task :prod do set :application, "xxx" set :deploy_timestamped, "false" set :user, "username" set :scm_user, "scmusername" set :re...

wldeploy problem - remote deploy not working

Hi I have the following ant configuration for remote deployment to weblogic. <target name="deploy"> <wldeploy name="${ant.project.name}.ear" user="${wls.username}" password="${wls.password}" adminurl="t3://${wls.hostname}:${wls.port}" action="deploy" source="myApp.ear" targets="${wls.server.name}" stage="true" verbose="true" uploa...

msdeploy/Web Deployment Tool deploying too many files

Hi, We're using msdeploy to deploy our sites to various environments from our continuous integration server. When the artifacts are deployed manually to the dev site from the command line. The deployment only pushes changed files and is very quick. However, when we push to our test or live environments the deployment copies a lot of f...

What are good deployment and release strategies for a shared runtime environment?

Bonjour. Status Quo For our customer we are developing some libraries and applications that run as "modules" within a larger application that is delivered as a internal Java Web Start application. The customer maintains the infrastructure that this application is run on. The "server side" is made up of a few web services based on Axis2...

MSDeploy to install windows service?

Hi, We have a website which publishes events using NServiceBus. The site is deployed using msdeploy. We also have the NServiceBus.exe which should run as a windows service to subscribe to these events, and we'd like to deploy that as well. Is there any way to package the service as well as the website, so that it can be installed as ...