Deploy your first application in minutes. Follow our simple guide to get up and running with CloudFoundry.
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
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
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
Your application is now running in the cloud. You can access it at your assigned URL and start scaling as needed.