{"id":24379398,"url":"https://github.com/valyentdev/valyent","last_synced_at":"2025-09-29T10:31:15.111Z","repository":{"id":269086275,"uuid":"905658999","full_name":"valyentdev/valyent","owner":"valyentdev","description":"A developers-first cloud platform.","archived":false,"fork":false,"pushed_at":"2025-01-15T08:55:05.000Z","size":1358,"stargazers_count":25,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-15T10:44:25.909Z","etag":null,"topics":["cloud","containers-as-a-service","paas"],"latest_commit_sha":null,"homepage":"https://valyent.cloud","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/valyentdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-19T09:17:04.000Z","updated_at":"2025-01-15T08:55:07.000Z","dependencies_parsed_at":"2025-01-07T16:17:36.632Z","dependency_job_id":"05081d54-91db-4832-b02a-6bf1976b967f","html_url":"https://github.com/valyentdev/valyent","commit_stats":null,"previous_names":["valyentdev/valyent"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valyentdev%2Fvalyent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valyentdev%2Fvalyent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valyentdev%2Fvalyent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valyentdev%2Fvalyent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/valyentdev","download_url":"https://codeload.github.com/valyentdev/valyent/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234609910,"owners_count":18859896,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloud","containers-as-a-service","paas"],"created_at":"2025-01-19T07:02:12.763Z","updated_at":"2025-09-29T10:31:15.106Z","avatar_url":"https://github.com/valyentdev.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"*This repo is now archived.*\n\n# Valyent\n\n## About\n\n[Valyent](https://valyent.cloud) is a developers-first cloud platform.\n\nIt allows developers to deploy their Docker containers at scale, in secure and multi-region environments.\n\nAt its core relies [Ravel](https://github.com/valyentdev/ravel.git), an open-source orchestrator.\nIt turns Docker images into lightning-fast microVMs and orchestrates them into fleets — collections of machines that power your services at scale.\n\nTo learn more about Valyent, check out the [documentation](https://docs.valyent.cloud).\n\n## Features\n\nWe are working fulltime on an alpha version for [Valyent](https://valyent.cloud).\n\n### Applications management (create, list, or delete)\n\n\u003cimg src=\"https://valyent.cloud/screenshots/applications.png\" /\u003e\n\n### Manage environment variables\n\n\u003cimg src=\"https://valyent.cloud/screenshots/env.png\" /\u003e\n\n### CLI and GitHub-based deployments\n\n\u003cimg src=\"https://valyent.cloud/screenshots/deployments.png\" /\u003e\n\n### Machines management\n\n\u003cimg src=\"https://valyent.cloud/screenshots/machines.png\" /\u003e\n\n### Gateways management\n\n\u003cimg src=\"https://valyent.cloud/screenshots/gateways.png\" /\u003e\n\n### Logs monitoring\n\n\u003cimg src=\"https://valyent.cloud/screenshots/logs.png\" /\u003e\n\n## License\n\nValyent is an open source project licensed under the [Apache License Version 2.0](https://github.com/valyentdev/valyent/blob/main/LICENSE).\n\n## Contributing\n\nYou can signal bugs or request a feature by opening an issue and/or a pull request on this repository. If you have any question, you can join our Discord where we are available almost everyday.\n\n## Development Setup\n\n### Requirements\n\n- [Node.js](https://nodejs.org/) - JavaScript runtime\n- [npm](https://www.npmjs.com/) - Node.js package manager\n- [Docker](https://www.docker.com/) - A containerization platform\n\n#### Installation\n\n```bash\n# Clone the Git repository on your machine\ngit clone https://github.com/valyentdev/valyent\n\n# Install the dependencies\nnpm i\n\n# Set up env variables\ncp .env.example .env\n\n# Run the dev containers\ndocker compose up -d\n\n# Run the migrations\nnode ace migration:run\n\n# Seed the database\nnode ace db:seed\n\n# Run the development server\nnpm run dev\n```\n\n### Set up GitHub OAuth\n\n1. Go to [GitHub Developer Settings](https://github.com/settings/apps) and create some new OAuth/regular app.\n\n2. Fill in the form with the following values :\n\n- Application name : `Valyent Console`\n- Homepage URL : `http://127.0.0.1:3333`\n- Callback URL : `http://127.0.0.1:3333/auth/github/callback`\n\n3. Once the app is created, you will be able to see the `Client ID` and `Client Secret`. Add them to the `.env` file :\n\n```env\nGITHUB_CLIENT_ID=\u003cyour_client_id\u003e\nGITHUB_CLIENT_SECRET=\u003cyour_client_secret\u003e\n```\n\nYou now should be able to log in with GitHub.\n\nPlease remember to use `http://127.0.0.1:3333` as your development URL, instead of `http://localhost:3333`.\n\n## Star History\n\nThank you for your support! 🌟\n\n[![Star History Chart](https://api.star-history.com/svg?repos=valyentdev/valyent\u0026type=Date)](https://star-history.com/#valyentdev/valyent\u0026Date)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvalyentdev%2Fvalyent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvalyentdev%2Fvalyent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvalyentdev%2Fvalyent/lists"}