The dev-to-production tag has no wiki summary.
20
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?
...
10
votes
5answers
265 views
Code & data tracking / deployment
For a long time now, we've held our data within the project's repository. We just held everything under data/sql, and each table had its own create_tablename.sql and data_tablename.sql files.
We have ...
7
votes
5answers
840 views
Django: sqlite for dev, mysql for prod?
Quick question: is it a good idea to use sqlite while developing a Django project, and use MySQL on the production server?
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 ...
4
votes
1answer
2k views
Symfony2: access same route in production as development
I'm developing a little application using Symfony2. I can access all routes with no problems in my dev environment:
http://symfony/app_dev.php/cp ("symfony" is in my hosts file to resolve to ...
2
votes
2answers
78 views
Running a Rails site: development vs production
I'm learning Ruby on Rails. At the moment I'm just running my site locally with rails server in the OS X Terminal. What changes when a Rails site is run on a production box?
Is the site still ...
1
vote
1answer
80 views
How do I disable code from running in the development environment on Rails?
How can I remove code when my Rails app is in development mode? For example, I want to remove my Google Analytics reference when in development but have it render in the production environment.
Is ...
1
vote
3answers
94 views
Building Production Release - DB Connection Credentials
We have a build that can package war files for specific environments where all our property files are embedded in the archive (war file).
We are now about to build for production. My concern is the ...
0
votes
1answer
24 views
What is the best way to check if the “Admin” Group is in the user groups (using has_and_belong_to_many relationships) in Rails 3?
I just want to check if the "Admin" Group is in the user groups. User and Group model has a has_and_belong_to_many relationship.
I had the system working fine with rails in developer mode, but when I ...
0
votes
0answers
35 views
Flex Flash Builder Form. No Errors in Local Dev but Errors on Production Server
I have been going crazy trying to figure this problem out.
I have a Flex Form application that works perfectly on my local development server. I'm using Flash Builder 4.5.1 with Zend Server community ...
0
votes
1answer
60 views
managing django local and site settings with multiple developers?
After looking around I have come up with the following code this seems to work well I was wondering what others have come up with and feedback would be great.
settings/init.py
import sys
import ...
0
votes
2answers
118 views
How can I drop the tables and syncdb for just one app in my Django project?
I have a Django app deployed on DjangoZoom. People have been signing up, so there are users in that database.
I want to restructure the database of one of my apps within the project. My plan was to ...
0
votes
1answer
76 views
Iframe working correctly on localserver but not production server
A question like this was asked before and the person got nothing but criticisms, hope this won't be the case here.
I have a website that allows a business to add their menu to my site, and some have ...
0
votes
1answer
113 views
How to keep the data moving from development to production DB: Rails3 application
Boys and girls,
So, I have finished my Rails3 webapp and I am trying to deploy it. Am using Passenger, I have managed to configure it as to point to the rails app, that is fine.
Now, since in ...
0
votes
3answers
57 views
What are good strategies for updating a live database table?
I have a db table that gets entirely re-populated with fresh data periodically. This data needs to be then pushed into a corresponding live db table, overwriting the previous live data.
As the table ...
0
votes
1answer
112 views
Drupal multi-site to single-site go-live
I have a colleague asking me to provide a single tarball containing an entire Drupal site, which they can drop on their server with no configuration beyond connecting the database.
To my knowledge ...
0
votes
2answers
54 views
How can one reference subdomains on a dev server that also correctly resolve on a production server?
Forgive me if this is an asinine question. I've done quite a bit of searching and haven't found an answer that seemed straightforwardly applicable.
I've got a LAMP dev server at something like ...
-1
votes
1answer
49 views
Javascript function error (function not defined)
I wrote a javascript function (already tested it and it works) on a file in a development server and it works just fine, I uploaded the file to the production server and when I test it I get the ...