Quick Start Guide

Deploy your first application in minutes. Follow our simple guide to get up and running with CloudFoundry.

1

Sign Up & Install CLI

Create your CloudFoundry account and install our command-line interface to manage your applications.

# Install CloudFoundry CLI
npm install -g @cloudFoundry/cli

# Login to your account
cf login
Create Account
2

Prepare Your Application

Configure your application with a simple manifest file that defines your deployment settings.

# Create manifest.yml
applications:
  - name: my-app
    memory: 512M
    instances: 2
    buildpack: nodejs_buildpack
3

Deploy to Cloud

Push your application to CloudFoundry with a single command. Watch as it automatically builds and deploys.

# Deploy your application
cf push

# Check application status
cf apps

🎉 Congratulations!

Your application is now running in the cloud. You can access it at your assigned URL and start scaling as needed.