Skip to content
This repository has been archived by the owner on Mar 24, 2022. It is now read-only.

Cloud Foundry

Brenda Chan edited this page Dec 18, 2015 · 2 revisions

###Deploying slackin to Cloud Foundry

Pre-requisites

Create an application manifest

Create the application manifest as manifest.yml

Sample manifest:

---
applications:
- name: slack
  command: slackin <your-slack-team-domain> <your-slack-api-key>
  memory: 256M
  disk_quota: 128M
  instances: 2   # 2 allows for high-availability and zero-downtime deploys
  buildpack: https://github.com/cloudfoundry/nodejs-buildpack
  host: slack
  domain: <your-domain>
  path: .

Deploy your slackin application

  • Place the manifest.yml in the root of the slackin repository
  • cf push
Clone this wiki locally