Skip to content

Filesystem Configuration

Jason Mueller edited this page Sep 4, 2014 · 1 revision

A filesystem based configuration repository is a simple way to start if you don't have a system in place already and lends itself well to versioning using the tools you already use (Git, Mercurial, etc.), so Powerdeploy includes support for using a filesystem structure as a configuration source.

##Structure##

/
|-- app/
    |-- MyWebApplication/
        |-- 1.0.0/
            |-- development.settings.pson
            |-- integration.settings.pson
            |-- production.settings.pson
            |-- settings.pson
|-- env/
    |-- development.settings.pson
    |-- integration.settings.pson
    |-- production.settings.pson
|-- settings.pson



/
-- settings.pson
-- app/
---- MyWebApplication/
------ 1.0.0/
-------- Development/
-------- Integration/
-------- Production/
-- env/
---- Development/
------settings.pson
---- Integration/
---- Production/

##Adding Configuration for an app##

##Adding configuration for an environment##

##Adding placeholders##

Clone this wiki locally