Last active
October 25, 2016 21:39
-
-
Save totuworld/aea92ba28d3d2562817d76816da5021b to your computer and use it in GitHub Desktop.
azuresqldb
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
| "devMySQL": { | |
| "host":"ja.cloudapp.net", | |
| "port": 3306, | |
| "dialect": "mysql", | |
| "username": "username", | |
| "password": "password", | |
| "dialectOptions":{ | |
| "encrypt": true, | |
| "database":"test" | |
| } | |
| } |
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
| $ npm install |
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
| $ NODE_ENV=devMySQL DEBUG=NodejsExampleApp:server DBUSERNAME=blah DBPASSWORD=blah node server.js | |
| NodejsExampleApp:server NODE_ENV +0ms devMySQL | |
| NodejsExampleApp:server RDB sync complete +3ms | |
| NodejsExampleApp:server Listening on port 3000 +11ms |
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
| $ NODE_ENV=development DEBUG=NodejsExampleApp:server DBUSERNAME=blah DBPASSWORD=blah node server.js | |
| NodejsExampleApp:server NODE_ENV +0ms development | |
| NodejsExampleApp:server RDB sync complete +3ms | |
| NodejsExampleApp:server Listening on port 3000 +11ms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment