September 2017
Intermediate to advanced
450 pages
11h 24m
English
Most of the debugging we will be doing through the command line, and will require you to be able to run your Node.js application directly from the terminal. Due to the various environment keys required by the application, you will need to make sure that you export these environment variables so that your Node.js process will have them available:
export cookieSecret=xxxxxxx NODE_ENV=development jwtSecret=xxxxxxxx cloudinaryCloudName=xxxxxxxxx cloudinaryAPIKey=xxxxxxxxxxxxxxxxxxx cloudinaryAPISecret=xxxxxxxxxxxxxxxxxxx stripeAPIPublishableKey=pk_test_xxxxxxxxxxxxxxxxxxx stripeAPISecretKey=sk_test_xxxxxxxxxxxxxxxxxxx
We will also need to install the optional debug module in order to add our own custom debug logging to our application: ...
Read now
Unlock full access