Deploy a Laravel app
Bring a Laravel application online without managing the server, queue supervisor, scheduler, and database as separate systems. Tokay reads the existing project and runs those parts together behind an HTTPS URL.
Last updated
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.
Database changes stay inside the release
Migrations are part of the normal deploy, saving you from coordinating a separate production procedure. Tokay rehearses them against a copy of your data, pauses destructive changes for your approval, and takes a snapshot before an approved destructive change runs.
Health checks run before the new version receives traffic. If they fail, Tokay restores the working release automatically.
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. Destructive migrations still require human approval.
Point your agent to app.tokay.io/llms.txt for the deployment protocol.
Tokay has a very generous free tier with no credit card. Get started.