Skip to content

Commit e0418d1

Browse files
committedJul 23, 2015
Added compose DB support for node, updated README and UI, and added deployment tracker for node
1 parent 55b69da commit e0418d1

10 files changed

+292
-258
lines changed
 

‎README.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ about
22
================================================================================
33

44
The ToDo sample apps are meant to be simple demos of how you can take advantage
5-
of BlueMix and a database service. In addition it shows how to take advantage
6-
of both the [built-in](https://www.ng.bluemix.net/docs/RT/Runtimes.jsp) and
7-
[community buildpacks](https://github.com/cloudfoundry-community/cf-docs-contrib/wiki/Buildpacks)
5+
of Bluemix and a database service. In addition it shows how to take advantage
6+
of both the [built-in](https://www.ng.bluemix.net/docs/starters/rt_landing.html) and [community buildpacks](https://github.com/cloudfoundry-community/cf-docs-contrib/wiki/Buildpacks)
87
to deploy your app using whatever runtime you choose.
98

109
The ToDo app is pretty simple, it allows you to add an persist ToDos that you
@@ -65,10 +64,9 @@ running the samples
6564

6665
To run the samples on BlueMix you must have signed up for BlueMix and have
6766
installed the Cloud Foundry command line tool. To sign up for BlueMix head to
68-
[bluemix.net](http://bluemix.net) and register.
67+
[bluemix.net](https://console.ng.bluemix.net/?cm_mmc=Display-GitHubReadMe-_-BluemixSampleApp-Todo-_-Node-Compose-_-BM-DevAd) and register.
6968

70-
You can download the Cloud Foundry command line tool by following the steps in the
71-
[README file](https://github.com/cloudfoundry/cli).
69+
You can download the Cloud Foundry command line tool by following the steps in the [README file](https://github.com/cloudfoundry/cli).
7270

7371
After you have installed the Cloud Foundry command line tool you need to point it
7472
at BlueMix so it knows where to deploy the applications. You can do this by running
@@ -153,7 +151,7 @@ The response should be a 204.
153151
### Mongo
154152

155153
* The Mongo implementation should use a collection called "todos".
156-
* You should create a Mongo DB service with the name "todo-mongo-db".
154+
* You should create a Mongo DB service with the name "todo-mongo-db" or "todo-compose-mongo-db", depending on which Mongo provider you choose.
157155

158156
#### Setting Up a Mongo DB server Locally
159157

‎frontend/index.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22
<html lang="en" data-framework="backbonejs">
33
<head>
44
<meta charset="utf-8">
5-
<title>BlueMix ToDos</title>
5+
<title>Bluemix ToDos</title>
66
<link rel="stylesheet" href="bower_components/todomvc-common/base.css">
77
<link rel="icon" href="images/bluemix-icon.png">
88
</head>
99
<body>
10+
<a href="https://github.com/IBM-Bluemix/todo-apps" target="_blank">
11+
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png">
12+
</a>
1013
<section id="todoapp">
1114
<header id="header">
1215
<h1>(bluemix) todos</h1>
@@ -22,7 +25,7 @@ <h1>(bluemix) todos</h1>
2225
<footer id="info">
2326
<p>Double-click to edit a todo</p>
2427
<p>Originally written by <a href="https://github.com/addyosmani">Addy Osmani</a></p>
25-
<p>Additions of <a href="http://ace.ng.bluemix.net">BlueMix</a> functionality made by BlueMix Dev Advocate Team.</p>
28+
<p>Additions of <a href="https://console.ng.bluemix.net/?cm_mmc=Display-SampleAppLink-_-BluemixSampleApp-Todo-_-Node-Compose-_-BM-DevAd">Bluemix</a> functionality made by Bluemix Dev Advocate Team.</p>
2629
<p>Originally part of <a href="http://todomvc.com">TodoMVC</a></p>
2730
</footer>
2831
<script type="text/template" id="item-template">

0 commit comments

Comments
 (0)
Please sign in to comment.