Deploy a Laravel app
Bring a Laravel application online without managing the server, queue supervisor, scheduler, and database as separate systems. Tokay analyzes the existing project and runs those parts together behind an HTTPS URL.
Last updated
AI agent? Start with llms.txt.
Your Laravel configuration carries into deployment
Your existing Laravel configuration carries into deployment, so you do not have to rebuild it as server setup. After you push the repo or connect GitHub, Tokay detects Laravel, the PHP version required by composer.json, the start command, and the environment variables read by the configuration.
Before deployment, you review the setup and provide private values such as APP_KEY. Tokay encrypts those values in storage and supplies them to the app at runtime.
Workers and scheduled tasks run beside the app
Tokay handles Laravel's ongoing processes as part of the same Project, so you do not have to configure a separate supervisor or cron service. queue:work runs as a background Service that stays up, while scheduled tasks run when they are due and record each execution.
The web app, workers, and scheduled tasks share the same MySQL or Postgres database, Redis connection, and secrets.
Laravel migrations are rehearsed before production
Migrations are part of the normal deploy, saving you from coordinating a separate production procedure. Tokay rehearses them against a copy of your data and snapshots the database before production changes. Under Normal release safety, risky or uncertain migrations pause for your approval.
Health checks run before a new version receives traffic. If they fail, the working version continues serving and the failed version never receives traffic.
Your AI agent can deploy the complete app
A coding agent like Claude Code or Codex can handle the Laravel deployment without handing server process configuration back to you. Through Tokay's GraphQL API, it can submit the repository, review the detected Services, set the secrets you provide, deploy the app, and verify the live site. A migration paused by release safety waits for a human decision.
Point your agent to app.tokay.io/llms.txt for the deployment protocol.
Deploy your first app on Tokay's permanent free plan without a credit card.