https://github.com/holedev/env-check
A developer tool for quickly validating API keys across multiple popular services.
https://github.com/holedev/env-check
Last synced: 10 months ago
JSON representation
A developer tool for quickly validating API keys across multiple popular services.
- Host: GitHub
- URL: https://github.com/holedev/env-check
- Owner: holedev
- License: gpl-3.0
- Created: 2025-05-19T02:27:28.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-21T07:38:55.000Z (11 months ago)
- Last Synced: 2025-07-21T09:27:08.577Z (11 months ago)
- Language: TypeScript
- Homepage: https://envcheck.vercel.app
- Size: 500 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# env-check
A developer tool for quickly validating API keys across multiple popular services. Stop wondering if your API keys are working - just paste and check!
## Features
- 🔑 Instant API key validation for 15+ popular services
- 🚀 Clean, modern interface built with Next.js
- 🔒 Client-side only - your API keys never touch our servers
- 🌙 Dark/Light mode support
- 🌍 i18n support (English/Vietnamese)
## Quick Start
```bash
# Install dependencies
pnpm install
# Start development server
pnpm dev
# Open http://localhost:3000
```
## Docker
```bash
# Run using the pre-built image
docker run -d \
--name env-check \
-p 3000:3000 \
holedev/env-check
# Access the application at http://localhost:3000
```
You can also stop and remove the container:
```bash
# Stop the container
docker stop env-check
# Remove the container
docker rm env-check
```
## Vercel Deployment
You can deploy this application to Vercel with a single click:
[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fhole-dev%2Fenv-check)
## Development
This project uses:
- Next.js with TypeScript
- Tailwind CSS for styling
- Biome for formatting and linting
- Conventional commits with Husky hooks
Available commands:
```bash
pnpm dev # Start development server
pnpm build # Build for production
pnpm test # Run tests
pnpm check:fix # Run Biome formatter and linter
```
## Contributing
We welcome contributions! Please read our [contributing guidelines](CONTRIBUTING.md) before submitting a pull request.
## License
[GNU GPLv3](LICENSE)