Deploy to Coolify
Deploy any supported GitHub application directly to your Coolify instance.
1
Paste a repository
Any public GitHub repository that contains an app.json manifest.
2
Fill the variables
The deploy form is generated automatically from app.json env definitions.
3
Deploy
An application is created on Coolify, configured, and deployed — live status included.
How does app.json work?
Add an app.json to the root of your repository (Heroku-compatible format). Every key under env becomes a field in the deploy form — secrets (TOKEN, PASSWORD, SECRET, HASH, SESSION, …) are masked automatically.
{
"name": "My App",
"description": "What it does",
"logo": "https://example.com/logo.png",
"env": {
"BOT_TOKEN": {
"description": "Your bot token",
"required": true
},
"SUPPORT_CHAT": {
"description": "Support group link",
"value": "https://t.me/example",
"required": false
}
}
}