Skip to content

Commit

Permalink
Fix mistake of mdx parsing markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsimper committed Apr 29, 2024
1 parent 295d9b1 commit 60e5d09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You will need your logging framework to do:

It is more difficult but considers your service as it is in production always, as soon as you begin making a difference you begin making a matrix of different ways your app can work and you need to explain to all what the difference is between prod/staging/dev/test/etc. and nobody can remember.

Say you use Twilio in production likesendSMS(), don’t add in your code if(env === prod) { sendSMS() } else { // do nothing because staging}. Only the developers will remember and your staging will begin to drift away from looking like production.
Say you use Twilio in production `likesendSMS()`, don’t add in your code `if(env === prod) { sendSMS() } else { // do nothing because staging}`. Only the developers will remember and your staging will begin to drift away from looking like production.

The solution is in staging also use Twilio exactly like in production. Create another account and use those instead. This will make your application predictable. Predictable is key for quick development!

Expand Down

0 comments on commit 60e5d09

Please sign in to comment.