Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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?
28
votes
2answers
7k views

How do I remove a single file from the staging area of Git but not remove it from the index or undo the changes to the file itself?

Situation: I have a Git repository with files already in the index. I make changes to several files, open Git and add these files to my staging area with "git add ." Question: How do I remove one of ...
18
votes
2answers
3k views

Git production/staging server workflow

Currently my website (production server) already have a lot of code in it. And now I want to start using Git for my projects and setup a staging server for my team. Can anybody give me any advise? ...
13
votes
3answers
1k views

How are people handling content management system production staging?

I've been dipping my toe into web development technologies for fun (ya, i should get out more), and am a little shocked at the lack of clear support for production staging (i.e. development, testing, ...
11
votes
2answers
767 views

Staging database good practices

I'm about to deploy to production a fairly complex site and for the first time need a staging environment where I can test things in a more realistic environment, especially with regard to some ...
11
votes
4answers
3k views

Does anybody have a development/staging/deploying workflow with php/mysql?

I'm thinking about a good workflow for php/mysql web-development. Anybody got some tips?
10
votes
1answer
738 views

How to set up a staging environment on Google App Engine

Having properly configured a Development server and a Production server, I would like to set up a Staging environment on Google App Engine useful to test new developed versions live before deploying ...
10
votes
5answers
3k views

Best Practices for a Web App Staging Server (on a budget)

I'd like to set up a staging server for a Rails app. I use git & github, Cap, and have a VPS with Apache/Passenger. I'm curious as to the best practices for a staging setup, as far as both the ...
8
votes
6answers
3k views

Git push current branch to a remote with Heroku

I'm trying to create a staging branch on Heroku, but there's something I don't quite get. Assuming I've already created a heroku app and setup the remote to point to staging-remote, If I do: git ...
8
votes
6answers
2k views

Using IIS virtual directories in Visual Studio Web Application projects

I have an ASP.NET project that has the following directories \ads \photos both these folders have thousands of files in them that get updated frequently. I currently have my IIS set up like ...
8
votes
2answers
2k views

Git GUI.. stage everything

I have just created a GIT on a folder. I now want to add the contents of that folder by "staging" all the files. In the GUI, is there a way to select all the files. I have well over 4000 files and ...
7
votes
2answers
7k views

Git: Stage into Commit, what is the right workflow?

I just created a big piece of code I want to commit in several separate commits. So I can stage relevant parts, commit, stage, commit, ... and so on until I have all my changes commited. The missing ...
7
votes
5answers
1k views

Staging database predicament

Suppose that there are 3 databases for Production Staging Dev As far as I know, Staging database need to be in sync with Production database But, When we are developing, we can do whatever we ...
6
votes
6answers
199 views

Wordpress staging enviroment

I work for a company that does sites for the pharma industry and we often need to get legal approval before we push any changes live. So, i'd like to migrate alot of our work to a CMS enviroment, ...
6
votes
5answers
2k views

What is a good way to set up a dev, staging and production workflow with wordpress

Wordpress presents some challenges since it tends to keep too much in the database, making it hard to move from server to server. What are some other issues to look out for? What was your workflow ...
5
votes
5answers
267 views

Disable git staging area

I really don't like the git staging area, it just makes my life unnecessarily confusing. Is it possible to disable it so that all edited and new files are in a single context? So that git diff shows ...
5
votes
1answer
500 views

The state of XEN vs KVM for inhouse virtual server farm like live farm

so we have a life server Farm, conventional stuff not virtualized. This is to stay that way for the time beeing. The servers we are talking about are: Loadbalancer, DB master, DB Slaves (2x), ...
4
votes
1answer
66 views

Staging / AB Testing CDN Hosting Javascript

Let's assume that i have a single javascript file that I have handed out to a lot of my clients, similar to GA's *ga.js, and this file is getting loaded high enough number of times that I have to host ...
4
votes
3answers
653 views

Trying to set up a heroku staging site - “Resource not found ”

I'm working on an existing rails project which is deployed on heroku. I'm trying to set up a staging server which deploys from the staging branch. (currently master deploys to production). I'm ...
4
votes
3answers
231 views

How do I interactively unstage a particular hunk in git?

In git, if I have a couple of hunks from the same file staged in my index, how can I interactively unstage one of them? Is there any alternative to unstaging the entire file, and then re-staging the ...
4
votes
3answers
366 views

Set up staging and production environmets and minimizing downtime on simple hosting

I have an ASP.NET MVC 3 application, WouldBeBetter.com, currently hosted on Windows Azure. I have an Introductory Special subscription package that was free for several months but was surprised at how ...
4
votes
4answers
247 views

How to 'git push' to a repo that was cloned as read-only onto my team's staging server

I cloned a repo using its GitHub read-only URL onto my team's staging server. I made some changes there to the config files. I'd like to change the repo clone on the server to be read-write, so ...
4
votes
2answers
296 views

Moving from Subversion to Mercurial - how to adapt the workflow and staging/integration systems?

We got all psyched about from from svn to hg and as the development workflow is more or less flushed out, here remains the most difficult part - staging and integration system. Hopefully this ...
4
votes
3answers
720 views

Development environment - VCS from development to staging server to production

I've read a number of topics in the same sort of ballpark as this one, but in all honesty I'm still not exactly sure on the best approach (as a starting point). I am a solo developer in a small office ...
4
votes
3answers
860 views

Best practices for (php/msql) deployment to shared hosting?

I have worked within a web development company where we had our local machines, a staging server and a a number of production servers. We worked on macs in perl and used svn to commit to stage, and ...
4
votes
2answers
580 views

Development, Staging environments, and more - questions !! :(

Here's my story, Sort of long - please bear with me :) I am currently the only programmer here, no much designing to do - yet. When I started, we had no source control, - files where edited directly ...
4
votes
6answers
737 views

How much should the staging environment equal the live one?

Management has decided to go for Windows 2008 64 bit with IIS7 to service our main website. They want to have it staged on a Windows 2003 server with IIS6. [Edit] Yes 32 bit is what they are planning ...
3
votes
2answers
79 views

git repository to staging site to live site

I'm just learning git and its basic fundamentals. I've got a live Magento store running and need to version control it asap. I've got git loaded on my work machine and have played around with setting ...
3
votes
2answers
44 views

What are some strategies to stage commits with TFS?

I'm using TFS 2010 as a Source Control System and have the problem that I want to do multiple commits, but cannot check them in because of a policy that requires a review. I want to do more commits ...
3
votes
3answers
78 views

Concept of git tracking and git staging

When you modify a file in your working directory, git tells you to use "git add" to stage. When you add a new file to your working directory, git tells you to use "git add" to start tracking. I am a ...
3
votes
1answer
51 views

How do you move a commit to the staging area in git?

If you want to move a commit to the staging area - that is uncommit it and move all of the changes which were in it into the staging area (effectively putting the branch in the state that it would ...
3
votes
2answers
161 views

How/Where do you store git repositories when working with multiple servers?

I'm fairly new to git, but I'm trying to set it up across all of our systems so that all projects are managed by git and gitosis. My question has to do with location of the actual repositories when ...
3
votes
1answer
159 views

Setting up a staging environment with an external hosting site?

I've been working for a few years on a project for a friend of mine, and it has slowly grown into a large website. In the early stages, I just did development on my local machine with a local ...
3
votes
1answer
243 views

Setting up a staging environment

I've been working for a few years on a project for a friend of mine, and it has slowly grown into a large website. In the early stages, I just did development on my local machine with a local ...
3
votes
2answers
693 views

how to create staging environment in heroku and push app

I have a rails project deployed on heroku which has only a production environment. I've created a staging environment by doing: "heroku create appname --remote staging" the slug size for on my ...
3
votes
1answer
506 views

Subversion planning for development, staging, live

I am in the planning stages of restructuring our subversion process and deployment in the attempt to minimize code loss and production deployment issues. Our current system simply consists of ...
3
votes
4answers
2k views

zend framework auto switch production staging test .. etc

What do I change to switch from production to staging.. etc.. and where.. Bootstrap ? Also, Curious if anyone has configured their Zend Framework to automatically switch from production, staging, ...
3
votes
4answers
444 views

What is the main purpose and sense to have staging server the same as production?

In our company we have staging and production servers. I'm trying to have them in state 1:1 after latest release. We've got web application running on several host and many instances of it. The issue ...
3
votes
6answers
1k views

Wordpress database migration

I've looked around the Wordpress forums about this and didn't find anything so I thought I might try here. If you have a staging/dev Wordpress setup used for testing new pluging and such, how do you ...
3
votes
6answers
316 views

Running test on Production Code/Server

I'm relatively inexperienced when it comes to Unit Testing/Automated Testing, so pardon the question if it doesn't make any sense. The current code base I'm working on is so tightly coupled that I'll ...
2
votes
1answer
136 views

Carrierwave storage path management with a staging instance on Heroku

I have two instances of my app in production on Heroku, staging.myapp.com and www.myapp.com, and I am following this workflow: Staging instance on Heroku. As I am using Carrierwave with AWS S3, I ...
2
votes
2answers
273 views

git add only modified changes and ignore untracked files

I ran "git status" and listed below are some files that were modified/or under the heading "changes not staged for commit". It also listed some untracked files that I want to ignore (I have a ...
2
votes
1answer
406 views

Heroku RACK_ENV says “development” on Thin, but “staging” on Unicorn

I came across this behavior and was wondering if anyone else had seen it. I have a workaround so it's not a show-stopper. I created a new app on Heroku with a Cedar stack. When demonstrating ...
2
votes
1answer
225 views

Windows Azure Multiple Sites under single role - Staging Issue with host header

I have a "web" and "mobile" site that I'm launching within Azure of the same domain. Originally I was going to run each as a separate hosted service but this doubles the cost though it would allow me ...
2
votes
2answers
105 views

Architecture of staging environment for CMS

My company has developed a cms but now we use it for a while we stumble upon a problem: all changes are directly linked to the live environment. If you want to do a big overhaul of a site, you ...
2
votes
2answers
539 views

Problem with modified files showing up in Git but not updating?

I've got some files/folders that just wont leave the Git staging area? # On branch master # Changed but not updated: # (use "git add <file>..." to update what will be committed) # (use "git ...
2
votes
1answer
172 views

How to create git workflow on heroku?

Production ↑ Staging ↗↘ Development ↗↙ ↖↘ Developer1 Developer2 How to create ...
2
votes
2answers
350 views

How to run GAE cron jobs as specific app version?

Recently I've started using limited staging on my Google App Engine project. The data is still shared between all versions, but behaviour (especially user facing behaviour) is different. Naturally ...
2
votes
1answer
133 views

Autotools copy data files to staging area

So I've been working with Autotools trying to learn the toolchain so I can use it in some of my cross-platform projects. I've got a pretty good handle on the very basics, but I've run into an issue ...
2
votes
2answers
474 views

copy production database to staging capistrano

I am using rails and capistrano with a staging and production server. I need to be able to copy the production database to the staging database when I deploy to staging. Is there an easy way to ...

1 2 3