29
votes
10answers
3k 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 …
28
votes
15answers
2k 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 …
20
votes
7answers
1k 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 …
19
votes
9answers
847 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 …
18
votes
9answers
2k 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 …
15
votes
3answers
179 views
Do you develop your Perl applications as CPAN modules?
Recently I read a blog post saying that it is a good practice to develop Perl applications just as you would develop a CPAN module. (Here it is – thanks David!) One of the reasons given was that you …
15
votes
7answers
10k 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 …
14
votes
1answer
2k views
How to upgrade a long running SharePoint Workflow already in production
I have been tasked with helping the deployment of a Phase 2 of a previous SharePoint deployment.
The original deployment has custom workflows that have been updated in phase 2.
Is there a "How-To" …
14
votes
16answers
1k views
Free Install Wizard software
Is there something like install shield that I can use for free?
13
votes
8answers
1k 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 …
12
votes
13answers
686 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 …
12
votes
4answers
2k 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 …
12
votes
6answers
2k 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 …
11
votes
6answers
636 views
What method do you use to deploy ASP.Net applications to the wild?
Currently we deploy compiled ASP.Net applications by publishing the web site locally and emailing a zip file to the system administrator with a (usually) lengthy set of instructions for deployment. …
11
votes
2answers
728 views
What’s the best way to create ClickOnce deployments
Our team develops distributed winform apps. We use ClickOnce for deployment and are very pleased with it.
However, we've found the pain point with ClickOnce is in creating the deployments. We have …
