Created
December 3, 2014 20:45
-
-
Save fsouza/9d98ed82386e51e0d660 to your computer and use it in GitHub Desktop.
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
mysql_host = get_env("MYSQL_HOST") | |
if not mysql_host: | |
mysql_host = "localhost" | |
mysql_port = get_env("MYSQL_PORT") | |
if not mysql_port: | |
mysql_port = 3306 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment