Created
April 29, 2017 21:29
-
-
Save tygern/5e8a792e7a76a5fa75550c25088d2411 to your computer and use it in GitHub Desktop.
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
start.environment([ | |
"DATASOURCE_URL": "jdbc:mysql://localhost:3306/pickles_dev", | |
"DATASOURCE_USER": "pickles", | |
"DATASOURCE_PASSWORD": System.getenv("DEV_DATASOURCE_PASSWORD"), | |
"PICKLES_URL": "http://localhost:8081", | |
]) | |
test.environment([ | |
"DATASOURCE_URL": "jdbc:mysql://localhost:3306/pickles_test", | |
"DATASOURCE_USER": "tester", | |
"DATASOURCE_PASSWORD": System.getenv("TEST_DATASOURCE_PASSWORD"), | |
"PICKLES_URL": "http://localhost:7071", | |
]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment