An open API service indexing awesome lists of open source software.

https://github.com/swisscom/cf-default-app-nodejs

The default Node.js app that will be pushed into the Swisscom Application cloud if no source code is provided.
https://github.com/swisscom/cf-default-app-nodejs

cloud-foundry express nodejs swisscom-application-cloud

Last synced: about 1 year ago
JSON representation

The default Node.js app that will be pushed into the Swisscom Application cloud if no source code is provided.

Awesome Lists containing this project

README

          

# CF Default App Node

The default Node.js app that will be pushed into the Swisscom Application Cloud if no source code is provided.

Based on [Express](http://expressjs.com/).

## Run locally

1. Install [Node.js and npm](https://nodejs.org/)
1. Run `npm install`
1. Run `npm start`
1. Visit [http://localhost:3000](http://localhost:3000)

## Run in the cloud

1. Install the [cf CLI](https://github.com/cloudfoundry/cli#downloads)
1. Run `cf push --random-route`
1. Visit the given URL

## Create ZIP

1. Run `zip -r node.js_app.zip src package.json package-lock.json`