Skip to content

Commit

Permalink
Add simple-todos example apps
Browse files Browse the repository at this point in the history
  • Loading branch information
Sashko Stubailo committed Sep 16, 2015
1 parent dd7227a commit 036ffb4
Show file tree
Hide file tree
Showing 45 changed files with 1,270 additions and 181 deletions.
12 changes: 7 additions & 5 deletions History.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,13 +230,15 @@

### `meteor` command-line tool

* There are two new example apps that can be used as starting points for
developing Meteor apps with React and Angular. They include the necessary
packages for the relevant view layer and don't include Blaze. Use them with:
* You can now create three new example apps with the command line tool. These
are the apps from the official tutorials at http://meteor.com/tutorials, which
demonstrate building the same app with Blaze, Angular, and React. Try these
apps with:

```sh
meteor create --example react
meteor create --example angular
meteor create --example simple-todos
meteor create --example simple-todos-react
meteor create --example simple-todos-angular
```

* `meteor shell` no longer crashes when piped from another command.
Expand Down
22 changes: 0 additions & 22 deletions examples/react/.meteor/packages

This file was deleted.

1 change: 0 additions & 1 deletion examples/react/.meteor/release

This file was deleted.

73 changes: 0 additions & 73 deletions examples/react/.meteor/versions

This file was deleted.

11 changes: 0 additions & 11 deletions examples/react/index.html

This file was deleted.

65 changes: 0 additions & 65 deletions examples/react/index.jsx

This file was deleted.

1 change: 0 additions & 1 deletion examples/react/style.css

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,3 @@ notices-for-0.9.0
notices-for-0.9.1
0.9.4-platform-file
notices-for-facebook-graph-api-2
1.2.0-standard-minifiers-package
1.2.0-meteor-platform-split
1.2.0-cordova-changes
File renamed without changes.
10 changes: 10 additions & 0 deletions examples/simple-todos-angular/.meteor/packages
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Meteor packages used by this project, one per line.
# Check this file (and the other files in this directory) into your repository.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

meteor-platform
urigo:angular
accounts-ui
accounts-password
File renamed without changes.
1 change: 1 addition & 0 deletions examples/simple-todos-angular/.meteor/release
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[email protected]
9 changes: 9 additions & 0 deletions examples/simple-todos-angular/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Simple Todo List

The Meteor Tutorial app, angular-meteor version.

Use it to share a single todo list with your friends. The list updates on everyone's screen in real time, and you can make tasks private if you don't want others to see them.

Learn how to build this app by following the [Meteor Tutorial - Angular version](https://www.meteor.com/tutorials/angular/creating-an-app).

![screenshot](https://github.com/meteor/simple-todos/blob/master/screenshot.png)
Loading

0 comments on commit 036ffb4

Please sign in to comment.