-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
90 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,44 @@ | ||
# CRAFT ENVIRONMENT / aaw -- 2016.12.04 | ||
# Craft .gitignore | ||
# | ||
# Example .gitignore file for Craft CMS | ||
# | ||
# @author nystudio107 | ||
# @copyright Copyright (c) 2017 nystudio107 | ||
# @link https://nystudio107.com/ | ||
# @package nystudio107/craft | ||
# @since 1.0.0 | ||
# @license MIT | ||
|
||
# This file should be renamed to '.gitignore' and placed in your | ||
# Craft CMS project root directory | ||
|
||
# CRAFT ENVIRONMENT | ||
.env.php | ||
.env.sh | ||
.env | ||
|
||
# BUILD FILES | ||
/bower_components/* | ||
/node_modules/* | ||
/build/* | ||
/yarn-error.log | ||
/npm-debug.log | ||
|
||
# MISC FILES | ||
.cache | ||
.DS_Store | ||
.idea | ||
.project | ||
.settings | ||
*.esproj | ||
*.sublime-workspace | ||
*.sublime-project | ||
*.tmproj | ||
*.tmproject | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
config.codekit3 | ||
prepros-6.config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,44 @@ | ||
# Craft-Multi-Environment Changelog | ||
|
||
## 1.0.6 - 2017.12.07 | ||
### Changed | ||
* Updated the default CME config to be in line with the Craft 3 version, in terms of the `custom` sub-array | ||
* Updated the `.gitignore` for popular editors | ||
|
||
## 1.0.5 - 2017.02.20 | ||
### Changed | ||
* Handle load balancing and shared environments better via a check for `HTTP_X_FORWARDED_PROTO` in the protocol | ||
* General code cleanup | ||
|
||
## 1.0.4 - 2017.01.02 | ||
|
||
* [Improved] Refactored the `example.env.php` to set the `CRAFTENV` vars in an array, and auto-prefix them programatically | ||
* [Improved] Updated README.md | ||
### Changed | ||
* Refactored the `example.env.php` to set the `CRAFTENV` vars in an array, and auto-prefix them programatically | ||
* Updated README.md | ||
|
||
## 1.0.3 - 2016.11.30 | ||
### Added | ||
* Added `CRAFTENV_CRAFT_ENVIRONMENT` so that the `CRAFT_ENVIRONMENT` constant is set via `.env.php` | ||
* Renamed `env` to `craftEnd`, accessible via `{{ craft.config.craftEnv }}` | ||
* Added an example Forge configuration in `forge-example` | ||
|
||
* [Added] Added `CRAFTENV_CRAFT_ENVIRONMENT` so that the `CRAFT_ENVIRONMENT` constant is set via `.env.php` | ||
* [Added] Renamed `env` to `craftEnd`, accessible via `{{ craft.config.craftEnv }}` | ||
* [Added] Added an example Forge configuration in `forge-example` | ||
* [Improved] Updated README.md | ||
### Changed | ||
* Updated README.md | ||
|
||
## 1.0.2 - 2016.11.09 | ||
### Added | ||
* Added the `env` variable to `general.php`, accessible via `{{ craft.config.env }}` | ||
|
||
* [Added] Added the `env` variable to `general.php`, accessible via `{{ craft.config.env }}` | ||
* [Improved] Updated README.md | ||
### Changed | ||
* Updated README.md | ||
|
||
## 1.0.1 - 2016.11.02 | ||
### Added | ||
* Added support for `CRAFTENV_SITE_URL` | ||
|
||
* [Added] Added support for `CRAFTENV_SITE_URL` | ||
* [Improved] Clarified the usage for `CRAFTENV_BASE_URL` & `CRAFTENV_BASE_PATH` | ||
* [Improved] Updated README.md | ||
### Changed | ||
* Clarified the usage for `CRAFTENV_BASE_URL` & `CRAFTENV_BASE_PATH` | ||
* Updated README.md | ||
|
||
## 1.0.0 - 2016.11.01 | ||
|
||
* [Improved] Initial release | ||
### Changed | ||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters