Commit 8b3c95ca authored by Arthur Verschaeve's avatar Arthur Verschaeve

Fix file paths in app readme files

Many file paths were outdated since we moved around all examples.
parent da9bdbba
...@@ -42,17 +42,17 @@ If you haven't already installed [Brunch](http://brunch.io), run: ...@@ -42,17 +42,17 @@ If you haven't already installed [Brunch](http://brunch.io), run:
Once you have Brunch, install this application's dependencies: Once you have Brunch, install this application's dependencies:
# from labs/dependency-examples/chaplin-brunch # from examples/chaplin-brunch
npm install & bower install npm install & bower install
To build the app, run: To build the app, run:
# from labs/dependency-examples/chaplin-brunch # from examples/chaplin-brunch
brunch build brunch build
To watch for changes and re-compile: To watch for changes and re-compile:
# from labs/dependency-examples/chaplin-brunch # from examples/chaplin-brunch
brunch watch brunch watch
Open `public/index.html` in your browser to see it in action! Open `public/index.html` in your browser to see it in action!
......
...@@ -38,17 +38,17 @@ _If you have other helpful links to share, or find any of the links above no lon ...@@ -38,17 +38,17 @@ _If you have other helpful links to share, or find any of the links above no lon
To install the dependencies locally, compile the CoffeScript, and run the demo server: To install the dependencies locally, compile the CoffeScript, and run the demo server:
# from labs/architecture-examples/derby # from examples/derby
make run make run
To edit the code while running the demo server: To edit the code while running the demo server:
# from labs/architecture-examples/derby # from examples/derby
make make
Open up another terminal window: Open up another terminal window:
# from labs/architecture-examples/derby # from examples/derby
node server node server
Open the URL shown. Open the URL shown.
......
...@@ -42,7 +42,7 @@ If you don't have Meteor installed already, from a terminal window: ...@@ -42,7 +42,7 @@ If you don't have Meteor installed already, from a terminal window:
To run the app: To run the app:
# from labs/architecture-examples/meteor # from examples/meteor
meteor meteor
The app should now be running on http://localhost:3000. The app should now be running on http://localhost:3000.
...@@ -52,7 +52,7 @@ The app should now be running on http://localhost:3000. ...@@ -52,7 +52,7 @@ The app should now be running on http://localhost:3000.
To deploy to meteor.com: To deploy to meteor.com:
# from labs/architecture-examples/meteor # from examples/meteor
meteor deploy myapp.meteor.com meteor deploy myapp.meteor.com
......
...@@ -42,10 +42,10 @@ If you would like to install CoffeeScript globally: ...@@ -42,10 +42,10 @@ If you would like to install CoffeeScript globally:
If you wish to install CoffeeScript just for the purposes of this app: If you wish to install CoffeeScript just for the purposes of this app:
# from labs/architecture-examples/serenadejs: # from examples/serenadejs:
npm install npm install
Once CoffeeScript is installed: Once CoffeeScript is installed:
# from labs/architecture-examples/serenadejs: # from examples/serenadejs:
npm run-script compile npm run-script compile
...@@ -42,4 +42,4 @@ Open http://localhost:3000 in two side-by-side browser windows, add a todo, and ...@@ -42,4 +42,4 @@ Open http://localhost:3000 in two side-by-side browser windows, add a todo, and
How to publish to our Heroku remote: How to publish to our Heroku remote:
- `git remote add heroku-todomvc-socketstream master` *(first time only)* - `git remote add heroku-todomvc-socketstream master` *(first time only)*
- `git subtree push --prefix labs/architecture-examples/socketstream heroku-todomvc-socketstream master` - `git subtree push --prefix examples/socketstream heroku-todomvc-socketstream master`
...@@ -41,6 +41,4 @@ Install the libraries needed using bower ([soma.js](http://somajs.github.io/soma ...@@ -41,6 +41,4 @@ Install the libraries needed using bower ([soma.js](http://somajs.github.io/soma
bower install bower install
To run the app, spin up an HTTP server and visit To run the app, spin up an HTTP server and visit `examples/somajs_require/`.
http://localhost/todomvc/labs/dependency-examples/somajs_require/
...@@ -38,12 +38,12 @@ To install CoffeeScript globally: ...@@ -38,12 +38,12 @@ To install CoffeeScript globally:
To compile once: To compile once:
# from architecture-examples/knockback # from examples/spine
cake build cake build
To compile on save To compile on save
# from architecture-examples/knockback # from examples/spine
cake watch cake watch
......
...@@ -28,7 +28,7 @@ _If you have other helpful links to share, or find any of the links above no lon ...@@ -28,7 +28,7 @@ _If you have other helpful links to share, or find any of the links above no lon
To re-compile the files, run: To re-compile the files, run:
# from labs/dependency-examples/thorax_lumbar # from examples/thorax_lumbar
npm install npm install
npm start npm start
......
...@@ -79,7 +79,7 @@ A standalone TypeScript compiler is available on NPM. ...@@ -79,7 +79,7 @@ A standalone TypeScript compiler is available on NPM.
To compile the TypeScript in this project: To compile the TypeScript in this project:
# from labs/architecture-examples/typescript-angular # from examples/typescript-angular
run `npm run compile` run `npm run compile`
Or use Visual Studio with the TypeScript plugin. Or use Visual Studio with the TypeScript plugin.
...@@ -45,6 +45,6 @@ A standalone TypeScript compiler is available on NPM. ...@@ -45,6 +45,6 @@ A standalone TypeScript compiler is available on NPM.
To compile the TypeScript in this project: To compile the TypeScript in this project:
# from labs/architecture-examples/typescript-backbone # from examples/typescript-backbone
tsc js/app.ts tsc js/app.ts
open index.html open index.html
...@@ -51,7 +51,7 @@ package dependencies. If you did not open the project in Dart Editor, ...@@ -51,7 +51,7 @@ package dependencies. If you did not open the project in Dart Editor,
you need to manually install the dependencies: you need to manually install the dependencies:
``` ```
cd vanilla-examples/vanilladart cd examples/vanilladart
pub get pub get
``` ```
...@@ -60,7 +60,7 @@ pub get ...@@ -60,7 +60,7 @@ pub get
You need to compile the app into JavaScript to run in your browser. You need to compile the app into JavaScript to run in your browser.
``` ```
cd vanilla-examples/vanilladart cd examples/vanilladart
pub build pub build
``` ```
...@@ -114,4 +114,4 @@ This TodoMVC application was created by [Mathieu Lorber](http://mlorber.net). ...@@ -114,4 +114,4 @@ This TodoMVC application was created by [Mathieu Lorber](http://mlorber.net).
[pub]: http://pub.dartlang.org [pub]: http://pub.dartlang.org
[editor]: https://www.dartlang.org/tools/editor/ [editor]: https://www.dartlang.org/tools/editor/
[pkglayout]: http://pub.dartlang.org/doc/package-layout.html [pkglayout]: http://pub.dartlang.org/doc/package-layout.html
[Dartium]: https://www.dartlang.org/tools/dartium/ [Dartium]: https://www.dartlang.org/tools/dartium/
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment