Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: updated README.md with npx command #1

Merged
merged 1 commit into from Sep 18, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 12 additions & 3 deletions README.md
@@ -1,14 +1,23 @@
## Env Template maker

>A simple CLI tool to create `.env.template` from existing `.env` file!
A simple CLI tool to create `.env.template` from existing `.env` file!

### Usage

To create the .env.template file, go to the directory containing your `.env` file and run;

```bash
npx env-template
```

You can also install it globally like this:

Run the following command to install the package globally:
```bash
npm i env-template -g
```

And then;

For creating `.env.template` file, go to the directory containing your `.env` file and simply run the command:
```bash
env-template
```
Expand Down