php - Moving config directory above app folder -
is there way move config app (app/config) above app folder? want deploy app folder without override config files on multiple instances of app.
i not sure if possible. can adding (set of) custom config(s) config.php's always_load section. can add custom paths can loaded file, outside of application.
while (partly) solves problem, might have better solution you:
you can configure application per environment. apppath/config/production/*.php override default configuration. if don't want version control folder, can add .gitignore. if deployment process smart enough, can configure preserve configuration files between deployments. activate production environment, need set fuel_env environment variable production.
Comments
Post a Comment