envful
envful copied to clipboard
A tool to verify the presence of environment variables before running a process 🌳
This feature proposes adding a warning/error on the case that a user's environment defines two variables with the same name. For example: ``` NEXT_PUBLIC_API_URL=http://localhost:4000 SOME_OTHER_VARS=12345 NEXT_PUBLIC_API_URL=https://api.quentli.com ``` This could catch...
It would be a cool feature to have a command that initiates a "wizard" asking you for the required and optional variables given a manifest file (.env.example). This would then...
Let's say we have a `.env.example` with this content: ```env ### The URL to the database instance DATABASE_URL= ### The app secret used to sign JSON Web Tokens APP_SECRET= ###...
This feature proposes adding a `--init` flag to envful to allow bootstrapping a `.env` file with the required and optional keys. The default values specified in `.env.example` will be used...