diff --git a/.gitattributes b/.gitattributes index 21256661..83dfbb9f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,4 @@ -* text=auto \ No newline at end of file +* text=auto +app/config/production/* filter=git-crypt diff=git-crypt +app/config/stage/* filter=git-crypt diff=git-crypt + diff --git a/.gitignore b/.gitignore index 3bfe13d1..8ccd8b3d 100644 --- a/.gitignore +++ b/.gitignore @@ -43,7 +43,6 @@ node_modules /public/build/ /bootstrap/compiled.php /vendor -/app/config/production composer.phar composer.lock atlassian-ide-plugin.xml diff --git a/app/config/production/app.php b/app/config/production/app.php new file mode 100644 index 00000000..833c2109 Binary files /dev/null and b/app/config/production/app.php differ diff --git a/app/config/production/cache.php b/app/config/production/cache.php new file mode 100644 index 00000000..457e480f Binary files /dev/null and b/app/config/production/cache.php differ diff --git a/app/config/production/database.php b/app/config/production/database.php new file mode 100644 index 00000000..e566c657 Binary files /dev/null and b/app/config/production/database.php differ diff --git a/app/config/production/poniverse.php b/app/config/production/poniverse.php new file mode 100644 index 00000000..5563da09 Binary files /dev/null and b/app/config/production/poniverse.php differ diff --git a/app/config/stage/app.php b/app/config/stage/app.php new file mode 100644 index 00000000..4fc41ec0 Binary files /dev/null and b/app/config/stage/app.php differ diff --git a/app/config/stage/cache.php b/app/config/stage/cache.php new file mode 100644 index 00000000..457e480f Binary files /dev/null and b/app/config/stage/cache.php differ diff --git a/app/config/stage/database.php b/app/config/stage/database.php new file mode 100644 index 00000000..a7623205 Binary files /dev/null and b/app/config/stage/database.php differ diff --git a/app/config/stage/poniverse.php b/app/config/stage/poniverse.php new file mode 100644 index 00000000..4570414a Binary files /dev/null and b/app/config/stage/poniverse.php differ