Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
37
votes
10answers
38k views

Best practices for copying files with Maven

I have config files and various documents that I want to copy from the dev environment to the dev-server directory using Maven2. Strangely, Maven does not seem strong at this task. Options: ...
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 ...
26
votes
16answers
3k views

Free Install Wizard software

Is there something like install shield that I can use for free?
24
votes
18answers
3k views

Separate 'debug' and 'release' builds?

I think it's better to release the version of the software which your developers actually tested; I therefore tend to delete the 'debug' target from the project/makefile, so that there's only one ...
22
votes
1answer
1k views

How to use mercurial for release management?

This is a cousin question with my earlier question of "How to manage concurrent development with mercurial", which covers individual developer workflow. The answer to this question will actually ...
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?
18
votes
8answers
324 views

Release Management - releasing to a subset of users - how would it work for a public facing website

I read somewhere (sorry don't exactly remember the source) that facebook has release Tuesdays. They release the new features to their internal employees first, then to a small set of external users ...
17
votes
8answers
475 views

App build/deployment workflow

What do you use to manage the workflow of deploying your application after the build completes? I'm not talking about just the act of getting files on a server, I'm talking about what happens after ...
17
votes
21answers
593 views

What are some things that you do to make sure a project is ready to be released?

I was wondering what final steps developers take before they release their new project.
16
votes
5answers
8k views

iPhone - dealloc - Release vs. nil

Wondering if someone with experience could possibly explain this a bit more. I have seen examples of... [view release]; view = nil; ....inside the (void) dealloc. What is the difference ...
15
votes
13answers
859 views

How to efficiently manage multiple installations of a web application?

From my experience, one of the bigger problems we come across during our webdevelopment process is keeping different setups updated and secure across different servers. My company has it's own CMS ...
15
votes
15answers
3k views

Getting software version numbers right. v1.0.0.1

I distribute software online, and always wonder if there is a proper way to better define version numbers. Let's assume A.B.C.D in the answers. When do you increase each of the components? Do you ...
14
votes
6answers
2k views

Distinguishing development mode and release mode environment settings on Android

I'm building an Android application and would like to maintain a few environment variables that I can tweak depending on whether I'm in development mode or release mode. For example, I need to invoke ...
14
votes
12answers
5k views

Release management in SVN

When I look in the SVN log I really wish I could see markers that tell me when releases were done. I've seen this in other version control systems such as PVCS and Perforce. Can this be done in SVN? ...
13
votes
13answers
1k views

How do you update a live, busy web site in the politest way possible?

When you roll out changes to a live web site, how do you go about checking that the live system is working correctly? Which tools do you use? Who does it? Do you block access to the site for the ...
13
votes
14answers
2k views

Deploying SQL Server Databases from Test to Live

I wonder how you guys manage deployment of a database between 2 SQL Servers, specifically SQL Server 2005. Now, there is a development and a live one. As this should be part of a buildscript (standard ...
12
votes
15answers
637 views

Which is better: shipping a buggy feature or not shipping the feature at all?

this is a bit of a philosophical question. I am adding a small feature to my software which I assume will be used by most users but only maybe 10% of the times they use the software. In other words, ...
11
votes
8answers
575 views

What standards does your team enforce for a major-version code deployment?

I'm curious as to what sort of standards other teams make sure is in place before code ships (or deploys) out the door in major releases. I'm not looking for specific answers to each, but here's an ...
11
votes
5answers
2k views

Visual Studio - How to remove a reference in Release mode

I'm developing a library for use in other apps and this library has lots of debugging and logging statements thanks to NLog. Is it possible to exclude the reference to NLog.dll when I switch to ...
10
votes
4answers
457 views

How to integrate QA into the Sprint

One of the challenges with Scrum is how to fit QA into the process. Sure, QA works with the developers on each individual user story during the Sprint, but what about giving QA time with the fully ...
10
votes
7answers
475 views

Release Process Improvements

The process of creating a new build and releasing it to production is a critical step in the SDLC but it is often left as an afterthought and varies greatly from one company to the next. I'm hoping ...
10
votes
7answers
3k views

Release management - best practice

I work for a product development company.We first do internal releases,and then public release.I was wondering, how other product developing companies manage their release? How do you give release ...
9
votes
4answers
186 views

In git, how can I find the revision at which a branch was created?

UPDATE: example repository, https://github.com/so-gitdemo/so-gitdemorepo In the context of the github repo. How can I easily locate rev "b0430cee"? I know I can just look, but the real example that ...
9
votes
1answer
279 views

Ideal Release Methodology, Tools, Structure

I'm at a firm that currently does releases in a very slow, manual way: Each deployable project has an installer. Once the release is ready, somebody remotes into the server and runs each installer. ...
9
votes
4answers
6k views

Maven release via Hudson

I'm setting up Hudson to use the batch-task plugin to do maven releases to our internal repository. I'm doing it via: mvn --batch-mode release:prepare mvn --batch-mode release:perform I'm ...
9
votes
4answers
5k views

How to deploy to a single specific server using Capistrano

I have a system in production that has several servers in serveral roles. I would like to test a new app server by deploying to that specific server, without having to redeploy to every server in ...
9
votes
9answers
6k views

How do you remotely update Java applications?

We've got a Java server application that runs on a number of computers, all connected to the Internet, some behind firewalls. We need to remotely update the JAR files and startup scripts from a ...
8
votes
13answers
1k views

What do you do to your JavaScript code before deployment?

Do you have a step in your deployment process that minifies JS? Do you have any sort of preprocessor for your JavaScript that allows you to leave in comments and console.logs and then have them ...
8
votes
6answers
636 views

Release early/release often for commercial software?

Are there anyone with experiences/examples on releasing early/releasing often for commercial software? Does it work? I was thinking of VMware where they have a lot of revisions release between each ...
7
votes
3answers
505 views

Side Effects of running the JVM in debug mode

I'd like to realease a Java application in debug mode to allow for easier debugging when random or hard to reproduce problems occur on the customer side. However, I want to get a heads up on ...
7
votes
5answers
2k views

SVN: Release branch and externals?

We have two websites for the same client (main www site and another for the ecommerce site which sits on a seperate server) that use shared portion of code (various features/styles/javascript etc.). ...
7
votes
1answer
649 views

Excluding Page from Release Build in ASP.NET Project

I am using an "Inspector.aspx" to do some tests in my Debug build. In a Release build (and more importantly when creating an installer), I manually exclude the page (and it's related C# files) from ...
7
votes
5answers
4k views

Tomcat deployment

Is there a way, given a war file, to deploy on a tomcat server. I want to do this without having to use the web interface.
6
votes
4answers
394 views

subversion release management with TeamCity

We currently use Subversion for our release management, and tag all of our releases (both to QA and to our production servers). However, we'd like to create a single Release directory reflecting our ...
6
votes
3answers
399 views

Django deployment tools

I'm looking for some tool (or set of tools) that could help me automate deploying Django projects with all required dependencies. I googled for some solutions but I am curious what are your favorite ...
6
votes
2answers
351 views

SVN Development and Release Process - Sanity Check

I am creating a process for working with version control and my web based application. This is what I have so far: I am doing main development under branches/development and keep that in sync with ...
6
votes
2answers
273 views

Examples of how to visualize a versioning system?

My shop is trying to formalize the release management process for an OSS product we maintain (edit: using SVN for version control). It's a sort of a web development framework/CMS kind of thing, as in ...
6
votes
5answers
497 views

Release management system for Linux

What we need in our firm is a sort of release management tool for Linux/C++. Our products consist of multiple libraries and config files. Here I will list the basic features we want such system to ...
6
votes
2answers
70 views

What do you do if a feature is dropped at the last moment?

Let's say you work on a large project with multiple features targeted in each release. We may have different feature branches (in the VCS) for each feature development. But after all the feature ...
6
votes
8answers
335 views

Accidentally released code to live. How to prevent happening again?

We had an incident recently where some code got released to live that was not scheduled to be released. It had obviously been checked into the trunk. Which is fine i guess as you want to 'check in ...
6
votes
19answers
571 views

If there are “known issues” why release? [closed]

I have seen many APIs which list the details about know issues? If there are known issues why release it to public before fixing them? What is the reason? Dead lines? Or fixing that can break ...
6
votes
9answers
760 views

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 ...
6
votes
8answers
508 views

What's your prefered method to name your software releases?

What's your prefered method to name your software releases? Like Microsoft: alpha - beta - final - service pack... Like Google: gmail beta - beta - beta - beta - :) Like some softwares: 0.2 - 0.3 - ...
6
votes
7answers
1k views

What is a good repository layout for releases and projects in Subversion?

We have the standard Subversion trunk/branches/tags layout. We have several branches for medium- and long-term projects, but none so far for a release. This is approaching fast. Should we: Mix ...
5
votes
3answers
478 views

Should I migrate from Django 1.2.5 to 1.3.x ? Are there any undocumented issues?

Short Question Are there any compelling reasons to update Django 1.2.5 to 1.3? If the noted changes in the release notes do not impact my application directly. EDIT: To better clarify my question ...
5
votes
1answer
835 views

Having 'mvn deploy' in Hudson's build goals and the standard approach of releasing

I set up Hudson for my project with the build goals mvn clean deploy site:site, run a build every midnight and whenever there are new changes. One thing I have been wondering is whether I should ...
5
votes
5answers
743 views

Any open source release management system like codeplex or sourceforge?

does any one knows any open source release management system could be hosted on own server? something like codeplex or sourcefoge
5
votes
1answer
123 views

Compiling static content for a web site

I've been looking for techniques on how to manage static content for a web application. From what I've found, there is the pure OO approach, packaging all specific requirements in object metadata and ...
5
votes
4answers
643 views

A better release management strategy?

I work for a company that makes a web based tool. As part of my job, I was given the task of release engineering for this product(something I had never done before). I've setup the following system ...

1 2 3 4 5 6