Skip to content

Commit

Permalink
display pro coming soon
Browse files Browse the repository at this point in the history
  • Loading branch information
motdotla committed Jun 22, 2024
1 parent 779243e commit 3b1dc0c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/cli/dotenvx.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env node

const fs = require('fs')
const path = require('path')
const UpdateNotice = require('./../lib/helpers/updateNotice')
const { Command } = require('commander')
const program = new Command()
Expand Down Expand Up @@ -96,7 +98,9 @@ program.command('encrypt')
program.command('pro')
.description('🏆 pro')
.action(function (...args) {
console.log('coming soon (small business)')
const pro = fs.readFileSync(path.join(__dirname, './pro.txt'), 'utf8')

console.log(pro)
})

// // dotenvx ent
Expand Down
22 changes: 22 additions & 0 deletions src/cli/pro.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
_______________________________________________________________
| |
| coming soon! (for small business) |
| |
| | | | | |
| __| | ___ | |_ ___ _ ____ ____ __ _ __ _ __ ___ |
| / _` |/ _ \| __/ _ \ '_ \ \ / /\ \/ / | '_ \| '__/ _ \ |
| | (_| | (_) | || __/ | | \ V / > < | |_) | | | (_) | |
| \__,_|\___/ \__\___|_| |_|\_/ /_/\_\ | .__/|_| \___/ |
| | | |
| |_| |
| ## learn more on github 🐙 |
| |
| >> https://github.com/dotenvx/dotenvx/issues/259 |
| |
| ## subscribe on github to be notified 📣 |
| |
| >> https://github.com/dotenvx/dotenvx/issues/259 |
| |
| ----------------------------------------------------------- |
| - thank you for using dotenvx! - @motdotla |
|_____________________________________________________________|

0 comments on commit 3b1dc0c

Please sign in to comment.