Starter configurations for deploying popular frameworks on Skyversal. Each template contains the minimum setup needed to get your app running in seconds.
| Template | Framework | Description |
|---|---|---|
laravel |
Laravel | PHP application with queue worker & scheduler |
nextjs |
Next.js | React SSR/SSG framework |
wordpress |
WordPress | Classic CMS with auto-configured database |
medusajs |
MedusaJS v2 | Headless e-commerce backend |
astro |
Astro | Static-first content framework |
ghost |
Ghost | Professional publishing platform |
- Pick a template from the list above
- Copy the
skyversal.jsoninto your project root - Push to GitHub, GitLab, or Bitbucket
- Connect your repo on Skyversal Console
- Deploy
Or start fresh by forking any template directory.
Each template includes a skyversal.json that tells the platform how to build and run your app:
{
"name": "my-app",
"framework": "laravel",
"build": "composer install --no-dev && npm run build",
"start": "php artisan serve --host=0.0.0.0 --port=$PORT"
}Have a framework you'd like to see here? Open an issue or submit a PR.