Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itsbrex/vercel-env-create
Auto-generate and maintain your project's .env files
https://github.com/itsbrex/vercel-env-create
cli env env-file environment environment-variables nextjs push vercel
Last synced: about 1 month ago
JSON representation
Auto-generate and maintain your project's .env files
- Host: GitHub
- URL: https://github.com/itsbrex/vercel-env-create
- Owner: itsbrex
- License: mit
- Created: 2023-02-25T02:34:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-15T08:20:38.000Z (11 months ago)
- Last Synced: 2024-10-01T11:04:49.354Z (about 2 months ago)
- Topics: cli, env, env-file, environment, environment-variables, nextjs, push, vercel
- Language: TypeScript
- Homepage:
- Size: 95.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Easily manage your local and Vercel deployment environment variables for `local`, `development`, `preview`, and `production`.
`vercel-env-create` is a Node.js script that scans your project for all referenced `process.env` variables and creates separate `.env` files each environment in the root of your project's directory.
This makes it easy to manage your local development and test environments, as well as each of your Vercel deployment environments (`development`, `preview`, and `production`).
## Installation
You can install this package using `npm`:
```bash
npm install -g vercel-env-create
```## Usage
If you installed globally, you can use it in your project directory like this to either create or update your .env files with all of the variables used in your project:
```bash
vercel-env-create
```Or you can install via `npx`:
```bash
npx vercel-env-create
```By default, the script will look for environment variables in files with the following extensions: `.js`, `.ts`, `.jsx`, `.tsx`, `.html`, and `.css`. You can add additional file extensions to search for by modifying the `extensions` array in the script.
The script will create the following .env files in your project directory:
- `.env` - for your default environment
- `.env.local` - for your local development environment
- `.env.development` - for your development environment
- `.env.production` - for your production environmentThis makes it easy to manage separate environment variables for each environment and ensures that all environment variables in your project are appropriately defined.
## Contributing
Contributions are welcome! If you find a bug or have a suggestion for improvement, please [open an issue](https://github.com/itsbrex/vercel-env-create/issues) or [submit a pull request](https://github.com/itsbrex/vercel-env-create/pulls).
## Support
If you found this project interesting or helpful, please consider [sponsoring me](https://github.com/sponsors/itsbrex) or following me [on twitter](https://twitter.com/itsbrex).
## License
Licensed under the [MIT](https://github.com/itsbrex/vercel-env-create/blob/main/LICENSE) License.
## Thanks
Shoutout to [HiDeoo](https://github.com/HiDeoo) for his work on [`vercel-env-push`](https://github.com/HiDeoo/vercel-env-push) and his [`create-app`](https://github.com/HiDeoo/create-app) CLI tool that this project was bootstrapped with. 🙏