We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ab63bc commit 97a04b9Copy full SHA for 97a04b9
.env.example
@@ -67,3 +67,8 @@ LOCAL_WP_TESTS_DOMAIN=example.org
67
68
# The URL to use when running e2e tests.
69
WP_BASE_URL=http://localhost:${LOCAL_PORT}
70
+
71
+##
72
+# This silences the tips output by the dotenv package.
73
74
+DOTENV_CONFIG_QUIET=true
tools/local-env/scripts/start.js
@@ -1,6 +1,6 @@
1
/* jshint node:true */
2
3
-const dotenv = require( 'dotenv' ).config({ quiet: true });
+const dotenv = require( 'dotenv' );
4
const dotenvExpand = require( 'dotenv-expand' );
5
const { execSync, spawnSync } = require( 'child_process' );
6
const local_env_utils = require( './utils' );
0 commit comments