Contributions are welcome: please feel free to open issues or PRs!
Prerequisites:
- Node.js 14 or later
- npm
Setup:
# Install dependencies
npm install
# Build the project
npm run build
# Run tests
npm testYou can end-to-end test your local build by linking it:
npm run build
npm link
# Create a test env file
echo "TEST_VAR=hello world" > test.env
# Test with environment variable substitution
envmcp --env-file test.env echo '$TEST_VAR'
# Unlink when done
npm unlink -g envmcpFeel free to open an issue if you have questions about contributing.