-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(App): Ability to load environment variables with .env files.
- Added .env.example as guide when deploying app - Added security rules to .htaccess - Updated .gitignore to ignore .env files
- Loading branch information
1 parent
3d3db29
commit 9b15159
Showing
4 changed files
with
34 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
GUSI_FRAMEWORK_ENCRYPTION_KEY=YourEncryptionKey | ||
GUSI_FRAMEWORK_DB_USER=YourDatabaseUser | ||
GUSI_FRAMEWORK_DB_PASSWORD=YourDatabasePassword |
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,6 @@ | ||
# Ignore .env files | ||
.env | ||
|
||
# Ignore .log debug files in App/Logs/Debug | ||
App/Logs/Debug/*.log | ||
|
||
|
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