https://github.com/jetkvm/cloud-api
JetKVM Cloud API
https://github.com/jetkvm/cloud-api
Last synced: about 1 month ago
JSON representation
JetKVM Cloud API
- Host: GitHub
- URL: https://github.com/jetkvm/cloud-api
- Owner: jetkvm
- License: gpl-2.0
- Created: 2024-10-20T13:43:03.000Z (over 1 year ago)
- Default Branch: dev
- Last Pushed: 2026-01-27T15:05:31.000Z (about 1 month ago)
- Last Synced: 2026-01-27T23:25:40.233Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 175 KB
- Stars: 170
- Watchers: 4
- Forks: 39
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- stars - cloud-api
README
### Cloud API
[Discord](https://jetkvm.com/discord) | [Website](https://jetkvm.com) | [Issues](https://github.com/jetkvm/cloud-api/issues) | [Docs](https://jetkvm.com/docs)
[](https://twitter.com/jetkvm)
JetKVM is a high-performance, open-source KVM over IP (Keyboard, Video, Mouse) solution designed for efficient remote management of computers, servers, and workstations. Whether you're dealing with boot failures, installing a new operating system, adjusting BIOS settings, or simply taking control of a machine from afar, JetKVM provides the tools to get it done effectively.
## Contributing
We welcome contributions from the community! Whether it's improving the firmware, adding new features, or enhancing documentation, your input is valuable. We also have some rules and taboos here, so please read this page and our [Code of Conduct](/CODE_OF_CONDUCT.md) carefully.
## I need help
The best place to search for answers is our [Documentation](https://jetkvm.com/docs). If you can't find the answer there, check our [Discord Server](https://discord.gg/8MaAhua7NW).
## I want to report an issue
If you've found an issue and want to report it, please check our [Issues](https://github.com/jetkvm/cloud-api/issues) page. Make sure the description contains information about the firmware version you're using, your platform, and a clear explanation of the steps to reproduce the issue.
## Development
This project is built with Node.js, Prisma, and Express.
```bash
# Start the database
docker compose -f compose.development.yaml up -d
# Copy and configure environment variables
cp .env.example .env
# Install dependencies
npm install
# Run database migrations
npm run prisma-dev-migrate
# Seed development data (optional)
npm run seed
# Start the development server with hot reload
npm run dev
# Run tests
npm test
```
## Self-Hosting
For self-hosting, use the default compose file which runs the complete stack:
```bash
# Copy and configure environment variables
cp .env.example .env
# Start everything (database, migrations, and app)
docker compose up -d
```
The app will be available on port 3000. Configure a reverse proxy (nginx, Caddy, etc.) for TLS termination.
### Updating
```bash
git pull
docker compose up -d --build
```
Database migrations run automatically on startup.