Getting Started with GoCloudify

Deploy your first application in minutes. Follow this guide to set up GoCloudify and deploy your application.

1

Install the CLI

Install GoCloudify CLI
Download and install the command-line tool for managing your applications
curl -sSL https://get.gocloudify.io | bash

Or download binaries for your platform from our releases page

2

Configure Your Environment

Connect to Your Cluster
Point the CLI to your GoCloudify instance
gocloudify config set-server https://your-instance.com
gocloudify login
3

Deploy Your Application

Create and Deploy
Create a new app and push your code
cd your-app-directory
gocloudify create my-app
git push gocloudify main

Your application will be automatically built, containerized, and deployed

4

Configure & Scale

Manage Your Application
Set environment variables, scale, and monitor
gocloudify config:set DATABASE_URL=postgres://...
gocloudify scale web=3
gocloudify logs --tail

Next Steps

Now that you've deployed your first application, explore advanced features like database management, custom domains, and CI/CD integrations.