Skip to content

Commit 1bb439d

Browse files
committed
tighten tips
1 parent ac93e9b commit 1bb439d

1 file changed

Lines changed: 9 additions & 14 deletions

File tree

lib/main.js

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,14 @@ const version = packageJson.version
88

99
// Array of tips to display randomly
1010
const TIPS = [
11-
'🔐 encrypt with Dotenvx: https://dotenvx.com',
12-
'🔐 prevent committing .env to code: https://dotenvx.com/precommit',
13-
'🔐 prevent building .env in docker: https://dotenvx.com/prebuild',
14-
'🤖 agentic secret storage: https://dotenvx.com/as2',
15-
'⚡️ secrets for agents: https://dotenvx.com/as2',
16-
'🛡️ auth for agents: https://vestauth.com',
17-
'🛠️ run anywhere with `dotenvx run -- yourcommand`',
18-
'⚙️ specify custom .env file path with { path: \'/custom/path/.env\' }',
19-
'⚙️ enable debug logging with { debug: true }',
20-
'⚙️ override existing env vars with { override: true }',
21-
'⚙️ suppress all logs with { quiet: true }',
22-
'⚙️ write to custom object with { processEnv: myObject }',
23-
'⚙️ load multiple .env files with { path: [\'.env.local\', \'.env\'] }'
11+
'◈ encrypted .env [www.dotenvx.com]',
12+
'◈ secrets for agents [www.dotenvx.com]',
13+
'⌁ auth for agents [www.vestauth.com]',
14+
'⌘ custom filepath { path: \'/custom/path/.env\' }',
15+
'⌘ enable debugging { debug: true }',
16+
'⌘ override existing { override: true }',
17+
'⌘ suppress logs { quiet: true }',
18+
'⌘ multiple files { path: [\'.env.local\', \'.env\'] }'
2419
]
2520

2621
// Get a random tip from the tips array
@@ -314,7 +309,7 @@ function configDotenv (options) {
314309
}
315310
}
316311

317-
_log(`injecting env (${keysCount}) from ${shortPaths.join(',')} ${dim(`-- tip: ${_getRandomTip()}`)}`)
312+
_log(`injecting env (${keysCount}) from ${shortPaths.join(',')} ${dim(`// tip: ${_getRandomTip()}`)}`)
318313
}
319314

320315
if (lastError) {

0 commit comments

Comments
 (0)