Tagged Questions

This tag is for questions related to getting your code to work between different environments. There are many challenges involved in making sure programs exhibit the same behavior in production as they do in testing and development. This tag covers everything from adding JARs to web containers, to moving release candidates to testing, to sending CDs to a retailer.

learn more… | top users | synonyms (1)

135
votes
13answers
29k views

Deploy a project using Git

How can I deploy a PHP website using Git? I have a hunch it has something to do with using git hooks to perform a git reset --hard on the server side, but how would I go about accomplishing this?
82
votes
7answers
11k views

Heroku in real life apps

What is your experience with using Ruby on Rails on Heroku in a production environment? Apart from the issue of the expensive HTTPS, do you see any drawback in the way it manages processes, memory ...
69
votes
11answers
14k views

An executable Python app

Python works on multiple platforms and can be used for desktop and web applications, thus I conclude that there is some way to compile it into an executable for Mac, Windows and Linux. The problem ...
63
votes
5answers
45k views

Install a .NET windows service without InstallUtil.exe

I have a standard .NET windows service written in C#. Can it install itself without using InstallUtil? Should I use the service installer class? How should I use it? I want to be able to call the ...
62
votes
11answers
9k views

Permission denied (publickey) when deploying heroku code. fatal: The remote end hung up unexpectedly

I'm attempting to deploy my code to heroku with the following command line: git push heroku master but get the following error: Permission denied (publickey). fatal: The remote end hung up ...
52
votes
13answers
13k views

What is your preferred php deployment strategy?

I'm beginning a new project in PHP and I'd love to get some feedback from other developers on their preferred strategy for PHP deployment. I'd love to automate things a bit so that once changes are ...
48
votes
18answers
6k views

Web application monitoring best practices

We are finishing up our web application and planning for deployment. Very important aspect of deployment to production is monitoring the health of the system. Having a small team of developers/support ...
45
votes
12answers
144k views

How can I deploy an iPhone application from Xcode to a real iPhone device?

How can I deploy an iPhone application from Xcode to real iPhone device without having a US$99 Apple certificate?
44
votes
6answers
8k views

Slow initial server startup when using Phusion Passenger and Rails

To jump on the band-wagon of Phusion Passenger we've setup a staging server for a small rails app to test things out. So far it has been very nice to use, it makes installing/configuring and ...
43
votes
7answers
4k views

How to deploy an ASP.NET Application with zero downtime

To deploy a new version of our website we do the following: Zip up the new code, and upload it to the server. On the live server, delete all the live code from the IIS website directory. Extract the ...
36
votes
12answers
1k views

Why not to deploy on a Friday?

Joel mentioned in StackOverflow podcast #24 that it's FogCreek company policy to not ship software on Fridays. However, he didn't elaborate as to why. I agree. At my employer, we deploy on ...
36
votes
4answers
6k views

Staging instance on Heroku

I'd like to be able to push code to dev.myapp.com for testing and then to www.myapp.com for production use. Is this possible with Heroku?
34
votes
6answers
2k views

Running Clojure web applications in production

I'm deeply in love with Clojure, and Compojure seems like a neat web framework. But it all fell apart when I wanted to deploy my application on a regular application server like Tomcat as a WAR. I ...
30
votes
8answers
3k views

How do you deploy your ASP.NET applications to live servers?

I am looking for different techniques/tools you use to deploy an ASP.NET web application project (NOT ASP.NET web site) to production? I am particularly interested of the workflow happening between ...
29
votes
9answers
6k views

How do YOU deploy your WSGI application? (and why it is the best way)

Deploying a WSGI application. There are many ways to skin this cat. I am currently using apache2 with mod-wsgi, but I can see some potential problems with this. So how can it be done? Apache ...
29
votes
4answers
24k views

Deploy ASP.NET MVC on IIS 5.1 (Windows XP)

OK, deploying ASP.NET MVC seems to be painful. I want to deploy my ASP.NET MVC application on Windows XP (IIS 5.1), but can't seem to find how to do it. When I type the application name into the web ...
28
votes
9answers
8k views

What's best Drupal deployment strategy?

I am working on my first Drupal project on XAMPP in my MacBook. It's a prototype and receives positive feedback from my client. I am going to deploy the project on a Linux VPS two weeks later. Is ...
28
votes
9answers
2k views

Best practices for new Rails deployments on Linux?

I've used straight Mongrel, I've used Mongrel clusters behind Apache, I've looked at Thin, and I'm becoming very intrigued by Passenger. I've looked at Nginx, too. I've looked at MRI, Ruby Enterprise ...
27
votes
8answers
736 views

How do you update your Java EE app in production?

My name is Jevgeni Kabanov and I’m a computer scientist/hackerpreneur. Recently I’ve been trying to figure out what is happening in the world of Java EE production deployment and frankly it seems ...
26
votes
9answers
3k views

Visual Studio 2010 Publish Web feature not including all DLLs

I have an ASP.NET MVC 2 application. Web project contains a reference to SomeProject SomeProject contains references to ExternalAssembly1 and ExternalAssembly2. SomeProject explicitly calls into ...
26
votes
16answers
3k views

Free Install Wizard software

Is there something like install shield that I can use for free?
26
votes
8answers
5k views

ILMerge Best Practices

Do you use ILMerge? Do you use ILMerge to merge multiple assemblies to ease deployment of dll's? Have you found problems with deployment/versioning in production after ILMerging assemblies together? ...
24
votes
2answers
2k views

How do you use pip, virtualenv and Fabric to handle deployment?

What are your settings, your tricks, and above all, your workflow? These tools are great but there are still no best practices attached to their usage, so I don't know what is the most efficient way ...
23
votes
3answers
7k views

putpkt: write failed, broken pipe

I'm using AdHoc deploy to deploy my app on an iPad, and I get this error. I've checked out a few questions in SO that say the same, but the solution has always been restart XCode, Restart iPad, ...
23
votes
15answers
3k views

Best practices for deploying Java webapps with minimal downtime?

When deploying a large Java webapp (>100 MB .war) I'm currently use the following deployment process: The application .war file is expanded locally on the development machine. The expanded ...
23
votes
4answers
12k views

How do I deploy a Python desktop application?

I have started on a personal python application that runs on the desktop. I am using wxPython as a GUI toolkit. Should there be a demand for this type of application, I would possibly like to ...
23
votes
9answers
8k views

Automate Deployment for Web Applications?

My team is currently trying to automate the deployment of our .Net and PHP web applications. We want to streamline deployments, and to avoid the hassle and many of the headaches caused by doing it ...
23
votes
8answers
6k views

ASP.NET MVC on IIS6

Where can I find some good pointers on best practices for running ASP.NET MVC on IIS6? I haven't seen any realistic options for web-hosts who provide IIS7-hosting yet. Mostly because I don't live in ...
22
votes
2answers
722 views

Raising minimum IOS Deployment Target Version for App Update

Let's say we have an application with a deployment target set to 3.0 and we want to raise the deployment target to 3.2. Normally, the App Store won't let the App be installed on devices with an IOS ...
21
votes
2answers
2k views

Best practices in building and deploying Clojure applications: good tutorials?

I am new to Clojure, and am beginning to experiment with building an application. So far, everything I've seen about tutorials on compiling Clojure programs involves interactivity. For example, ...
21
votes
9answers
3k views

How to manage local vs production settings in Django?

A Django newbie question: What is the recommended way of handling settings for local development and the production server? Some of them (like Constants, etc) can be changed/accessed in both, but some ...
21
votes
5answers
8k views

Step-By-Step ASP.NET Automated Build/Deploy

Seems like there are so many different ways of automating one's build/deployment that it becomes difficult to parse through all the different scenarios that people support in tutorials on the web. So ...
20
votes
1answer
225 views

Promoting several modules (integration -> milestone) in ivy

Ivy is great for managing dependencies, but it isn't meant to handle the entire software lifecycle across many modules. That said, it does have several features that seem to support it (such as the ...
20
votes
3answers
451 views

PHP Code Deployment Tips

In the past, I have been developing in a very amateurish fashion, meaning I had a local machine where I developed and tested code and a production machine to which I copied the code when I was done. ...
20
votes
11answers
4k views

Do you have to deploy the .pdb file with compiling under release?

Do you have to deploy the .pdb file with compiling under release? Why does it even compile a .pdb when you do a release build anyway?
19
votes
3answers
4k views

How to deploy after a build with TeamCity?

I'm setting up TeamCity as my build server. I have my project set up, it is updating correctly from subversion, and building ok. So what's next? Ideally, I'd like to have it auto deploy to a ...
19
votes
9answers
4k views

Running .net based application without .NET Framework

Is there a way to run .net based applications without .net framework installed. Is there a way to do this. Is there a software that can achive this. Commercial software is also possible. Added: Has ...
19
votes
8answers
8k views

Deny access to .svn folders on Apache

We have a rails application in subversion that we deploy with Capistrano but have noticed that we can access the files in '/.svn', which presents a security concern. I wanted to know what the best ...
18
votes
7answers
5k views

How to deploy node.js?

What is the best way to deploy node.js? I have a Dreamhost VPS (thats what they call a vm) and I have been able to install node.js and setup a proxy. This works great as long as I keep the ssh ...
18
votes
5answers
4k views

Does an R compiler exist?

I'm wondering about the best way to deploy R. Matlab has the "matlab compiler" (MCR). There has been discussion about something similar in the past for R that would compile R into C or C++. Does ...
18
votes
4answers
3k views

Merge msi and exe

My deployment project creates and .msi-file and an .exe-file. Is it possible to merge these into one .exe?
18
votes
13answers
15k views

What's the foolproof way to tell which version(s) of .NET are installed on a production Windows Server?

This question is not so much programming related as it is deployment related. I find myself conversing a lot with the group in my company whose job it is to maintain our production Windows servers ...
18
votes
7answers
5k views

What are some good SSH Servers for windows? [closed]

Trying to setup an SSH server on windows server 03. What are some good ones? Preferably open source. I plan on using WinSPC as a client so a server which supports the advanced features implemented by ...
18
votes
5answers
5k views

How Do You Secure database.yml?

Within Ruby on Rails applications database.yml is a plain text file that stores database credentials. When I deploy my Rails applications I have an after deploy callback in my Capistrano recipe that ...
17
votes
7answers
29k views

Reasons of getting a java.lang.VerifyError

I'm investigating the following java.lang.VerifyError java.lang.VerifyError: (class: be/post/ehr/wfm/application/serviceorganization/report/DisplayReportServlet, method: getMonthData signature: ...
17
votes
6answers
5k views

Reporting Services Deployment

I need to create a repeatable process for deploying SQL Server Reporting Services reports. I am not in favor of using Visual Studio and or Business Development Studio to do this. The rs.exe method ...
17
votes
8answers
17k views

VS2008 Setup Project: Shared (By All Users) Application Data Files?

fellow anthropoids and lily pads and paddlewheels! I'm developing a Windows desktop app in C#/.NET/WPF, using VS 2008. The app is required to install and run on Vista and XP machines. I'm working on ...
17
votes
7answers
3k views

Best practices for managing and deploying large JavaScript apps

What are some standard practices for managing a medium-large JavaScript application? My concerns are both speed for browser download and ease and maintainability of development. Our JavaScript code ...
16
votes
4answers
4k views

Maven equivalent for python

I'm a java developer/python beginner, and I'm missing my maven features, particularly dependency management and build automation (I mean you don't build, but how to create a package for deployment?) ...
16
votes
4answers
2k views

When should I deploy my assemblies into the GAC?

I would like to know practically what kind of Assemblies should I deploy in GAC. Case 1. If in my Solution multiple project uses log4net.dll then should it be deployed in GAC? Case 2. If I have ...

1 2 3 4 5 104