Committing Machine Specific Configuration Files

后端 未结 10 1368
我在风中等你
我在风中等你 2020-11-22 06:43

A common scenario when I develop is that the codebase will have several config files which require machine specific settings. These files will be checked into Git and other

相关标签:
10条回答
  • 2020-11-22 07:09

    Have your program read a pair of configuration files for its settings. First, it should read a config.defaults file that would be included in the repository. Then, it should read a config.local file that should be listed in .gitignore

    With this arrangement, new settings appear in the defaults file and take effect as soon as it's updated. They will only vary on particular systems if they're overridden.

    As a variation on this, you could have just a general config file that you ship in version control, and have it do something like include config.local to bring in the machine-specific values. This introduces a more general mechanism (versus policy) in you code, and consequently enables more complicated configurations (if that's desirable for your application). The popular extension from this, seen in many large-scale open-source software, is to include conf.d, which reads configuration from all the files in a directory.

    Also see my answer to a similar question.

    0 讨论(0)
  • 2020-11-22 07:11

    I agree with the best answer but also would like add something. I use an ANT script to strip & modify files from the GIT repo so I'm sure no production files get overwritten. There is a nice option in ANT to modify java-property files. This means putting your local test variables in a java-style property file and adding some code to process it, but it gives you the opportunity to automate building your site before you FTP it online. Typically you would put your production information in the site.default.properties file, and let ANT manage the settings. Your local settings would be in the site.local.properties.

        <?php
    /**
     * This class will read one or two files with JAVA style property files. For instance site.local.properties & site.default.properties
     * This will enable developers to make config files for their personal development environment, while maintaining a config file for 
     * the production site. 
     * Hint: use ANT to build the site and use the ANT <propertyfile> command to change some parameters while building.
     * @author martin
     *
     */
    class javaPropertyFileReader {
    
        private $_properties;
        private $_validFile;
    
        /**
         * Constructor
         * @return javaPropertyFileReader
         */
        public function   __construct(){
            $this->_validFile = false;
            return $this;
        }//__construct
    
        /**
         * Reads one or both Java style property files
         * @param String $filenameDefaults
         * @param String $filenameLocal
         * @throws Exception
         * @return javaPropertyFileReader
         */
        public function readFile($filenameDefaults, $filenameLocal = ""){
    
            $this->handleFile($filenameDefaults);
            if ($filenameLocal != "") $this->handleFile($filenameLocal);
        }//readFile
    
        /**
         * This private function will do all the work of reading the file and  setting up the properties
         * @param String $filename
         * @throws Exception
         * @return javaPropertyFileReader
         */
        private function handleFile($filename){
    
        $file = @file_get_contents($filename);
    
        if ($file === false) {
             throw (New Exception("Cannot open property file: " . $filename, "01"));
        }
        else {
            # indicate a valid file was opened
            $this->_validFile = true;
    
            // if file is Windows style, remove the carriage returns
            $file = str_replace("\r", "", $file);
    
            // split file into array : one line for each record
            $lines = explode("\n", $file);
    
            // cycle lines from file
            foreach ($lines as $line){
                $line = trim($line);
    
                if (substr($line, 0,1) == "#" || $line == "") {
                    #skip comment line
                }
                else{
                    // create a property via an associative array
                    $parts   = explode("=", $line);
                    $varName = trim($parts[0]);
                    $value   = trim($parts[1]);
    
                    // assign property
                    $this->_properties[$varName] = $value;
                }
            }// for each line in a file
        }
        return $this;
        }//readFile
    
        /**
         * This function will retrieve the value of a property from the property list.
         * @param String $propertyName
         * @throws Exception
         * @return NULL or value of requested property
         */
        function getProperty($propertyName){
            if (!$this->_validFile) throw (new Exception("No file opened", "03"));
    
            if (key_exists($propertyName, $this->_properties)){
                return $this->_properties[$propertyName];
            }
            else{
              return NULL;
            }
        }//getProperty
    
        /**
         * This function will retreive an array of properties beginning with a certain prefix.
         * @param String $propertyPrefix
         * @param Boolean $caseSensitive
         * @throws Exception
         * @return Array
         */
        function getPropertyArray($propertyPrefix, $caseSensitive = true){
            if (!$this->_validFile) throw (new Exception("No file opened", "03"));
    
            $res = array();
    
            if (! $caseSensitive) $propertyPrefix= strtolower($propertyPrefix);
    
            foreach ($this->_properties as $key => $prop){
                $l = strlen($propertyPrefix);
    
                if (! $caseSensitive) $key = strtolower($key);
    
                if (substr($key, 0, $l ) == $propertyPrefix) $res[$key] = $prop;
            }//for each proprty
    
            return $res;
        }//getPropertyArray
    
        function createDefineFromProperty($propertyName){
            $propValue = $this->getProperty($propertyName);
            define($propertyName, $propValue);
        }//createDefineFromProperty
    
    
        /**
         * This will create a number of 'constants' (DEFINE) from an array of properties that have a certain prefix.
         * An exception is thrown if 
         * @param  String $propertyPrefix
         * @throws Exception
         * @return Array The array of found properties is returned.
         */
        function createDefinesFromProperties($propertyPrefix){
            // find properties
            $props = $this->getPropertyArray($propertyPrefix);
    
            // cycle all properties 
            foreach($props as $key => $prop){
    
                // check for a valid define name
                if (preg_match("'[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*'", $key)) {
                    define($key, $prop);
                }   
                else{
                    throw (new Exception("Invalid entry in property file: cannot create define for {" . $key . "}", "04"));
                }   
            }// for each property found
    
            return $props;
        }//createDefineFromProperty
    
    }//class javaPropertyFileReader
    

    then use it:

      $props = new javaPropertyFileReader();
      $props->readFile($_SERVER["DOCUMENT_ROOT"] . "/lib/site.default.properties",$_SERVER["DOCUMENT_ROOT"] . "/lib/site.local.properties");
    
      #create one DEFINE
      $props->createDefineFromProperty("picture-path");
    
      # create a number of DEFINEs for enabled modules
      $modules = $props->createDefinesFromProperties("mod_enabled_");
    

    Your site.default.properties would look like:

    release-date=x
    environment=PROD
    picture-path=/images/
    
    SITE_VERSION_PRODUCTION=PROD
    SITE_VERSION_TEST=TEST
    SITE_VERSION_DEVELOP=DEV
    
    # Available Modules
    mod_enabled_x=false
    mod_enabled_y=true
    mod_enabled_z=true
    

    and your site.local.properties would look like (notice the difference environment and enabled modules):

    release-date=x
    environment=TEST
    picture-path=/images/
    
    SITE_VERSION_PRODUCTION=PROD
    SITE_VERSION_TEST=TEST
    SITE_VERSION_DEVELOP=DEV
    
    # Available Modules
    mod_enabled_x=true
    mod_enabled_y=true
    mod_enabled_z=true
    

    And your ANT instructions: ($d{deploy} being your deployment target directory)

    <propertyfile
        file="${deploy}/lib/site.properties"
        comment="Site properties">
        <entry  key="environment" value="PROD"/>
        <entry  key="release-date" type="date" value="now" pattern="yyyyMMddHHmm"/>
    </propertyfile>
    
    0 讨论(0)
  • 2020-11-22 07:13

    Building on @Greg Hewgill's answer, you could add a specific commit with your local changes and tag it as localchange:

    git checkout -b feature master
    vim config.local
    git add -A && git commit -m "local commit" && git tag localchange
    

    Then proceed to add your feature's commits. After finishing the work, you can merge this branch back to master without the localchange commit by doing this:

    git rebase --onto master localchange feature
    git fetch . feature:master
    git cherry-pick localchange
    git tag localchange -f
    

    These commands will:

    1) Rebase your feature branch to master, ignoring the localchange commit. 2) Fast forward master without leaving feature branch 3) Add localchange commit back to the top of the feature branch so you can continue working on it. You can do this to any other branch you want to continue working on. 4) Reset localchange tag to this cherry-picked commit so we can use rebase --onto again in the same way.

    This isn't meant to replace the accepted answer as the best general solution, but as a way of thinking out of the box about the problem. You basically avoid accidentally merging local changes to master by only rebasing from localchange to feature and fast forwarding master.

    0 讨论(0)
  • 2020-11-22 07:16

    I do it like it's recommended here with default and local config files. To manage my local config files wich are in the projects .gitignore, I made a git repo ~/settings. There I manage all my local settings from all projects. You create, for example a folder project1 in ~/settings and put all the local config stuff for this project into it. After that you can symlink that files/folder to your project1.

    With that approach you can track your local config files, and don't put them into to the normal source code repository.

    0 讨论(0)
  • 2020-11-22 07:19

    One possibility is to have the actual files in your .gitignore, but check in default configurations with a different extension. A typical example for a Rails app would be the config/database.yml file. We would check in config/database.yml.sample, and each developer creates their own config/database.yml which is already .gitignored.

    0 讨论(0)
  • 2020-11-22 07:20

    You can try git update-index --skip-worktree filename . This will tell git to pretend that local changes to filename don't exist, so git commit -a will ignore it. It has the added advantage of also resisting git reset --hard, so you won't accidentally lose your local changes. Also, automatic merges will fail gracefully if the file is changed upstream (unless the working directory copy matches the index copy, in which case it will be automatically updated). The downside is the command has to be run on all machines involved, and it's difficult to do this automatically. See also git update-index --assume-unchanged for a subtly different version of this idea. Details on both can be found with git help update-index .

    0 讨论(0)
提交回复
热议问题