File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,30 +17,30 @@ import { RuntimeException } from '@poppinss/utils/exception'
1717 * Env parser parses the environment variables from a string formatted
1818 * as a key-value pair seperated using an `=`. For example:
1919 *
20- * ```dotenv
20+ * ```
2121 * PORT=3333
2222 * HOST=127.0.0.1
2323 * ```
2424 *
2525 * The variables can reference other environment variables as well using `$`.
2626 * For example:
2727 *
28- * ```dotenv
28+ * ```
2929 * PORT=3333
3030 * REDIS_PORT=$PORT
3131 * ```
3232 *
3333 * The variables using characters other than letters can wrap variable
3434 * named inside a curly brace.
3535 *
36- * ```dotenv
36+ * ```
3737 * APP-PORT=3333
3838 * REDIS_PORT=${APP-PORT}
3939 * ```
4040 *
4141 * You can escape the `$` sign with a backtick.
4242 *
43- * ```dotenv
43+ * ```
4444 * REDIS_PASSWORD=foo\$123
4545 * ```
4646 *
You can’t perform that action at this time.
0 commit comments