-
-
Save JoshuaEstes/d4a45d83cfee862b5124 to your computer and use it in GitHub Desktop.
Basic .env file for working with Symfony2 projects. Just need to comment out the include
This file contains hidden or 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
export SYMFONY__SECRET=ReplaceWithToken | |
export SYMFONY__LOCALE=en | |
export SYMFONY__ASSETIC__CONTROLLER=true | |
export SYMFONY__DATABASE__DRIVER=pdo_sqlite | |
export SYMFONY__DATABASE__HOST=127.0.0.1 | |
export SYMFONY__DATABASE__NAME=symfony | |
export SYMFONY__DATABASE__PASSWORD=root | |
export SYMFONY__DATABASE__PORT=3667 | |
export SYMFONY__DATABASE__USER=root | |
export SYMFONY__MAILER__TRANSPORT=smtp | |
export SYMFONY__MAILER__HOST=127.0.0.1 | |
export SYMFONY__MAILER__USER='' | |
export SYMFONY__MAILER__PASSWORD='' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment