Created
September 24, 2018 02:36
-
-
Save gkumarau/c89aee9435162911becac044b90958f1 to your computer and use it in GitHub Desktop.
This is an example of JSON based environment configuration file where IP address is duplicated multiple times.
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
{ | |
"environment_config": { | |
"app": { | |
"name": "Sample App", | |
"url": "http://10.0.0.120:8080/app/", | |
}, | |
"database": { | |
"name": "mysql database", | |
"host": "10.0.0.120", | |
"port": 3128, | |
"username": "root", | |
"password": "toor", | |
}, | |
"rest_api": "http://10.0.0.120:8080/v2/api/" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment