-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing ENV parsing and adding Readme
- Loading branch information
1 parent
f57d431
commit 4c5a95b
Showing
2 changed files
with
18 additions
and
1 deletion.
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,2 +1,13 @@ | ||
# tina4php-env | ||
Environment support for your PHP project | ||
|
||
An .env will be created for you when the system runs for the first | ||
time. If you specify an environment variable on your OS called ENVIRONMENT then .env.ENVIRONMENT will be loaded instead. | ||
|
||
```bash | ||
[Section] <-- Group section | ||
MY_VAR=Test <-- Example declaration, no quotes required or escaping, quotes will be treated as part of the variable | ||
# A commment <-- This is a comment | ||
[Another Section] | ||
VERSION=1.0.0 | ||
``` |
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