Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ For most cases, you'll need AngularJS as well. This is bundled in `js/angular/`

* The demo site is generated into `dist/ionic-demo`. To test the demos, follow these steps:
1. Run `gulp demos [--demo-version=(versionName|nightly)]`
2. Start an http server from `dist/ionic-demo`:
- `cd dist/ionic-demo && python -m SimpleHTTPServer`
2. Start an http server:
- `python -m SimpleHTTPServer`
3. Navigate to `http://localhost:8000/{versionName|nightly}` and use the demos
4. Run `gulp demos` again whenever you change the demos

Expand Down
2 changes: 1 addition & 1 deletion config/demos/processors/demos.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ module.exports = {
demoData.name = firstDoc.name;
demoData.component = firstDoc.component;
demoData.href = path.join(
'/',
'/dist/ionic-demo/',
contentsFolder,
_.template(assetOutputPath, _.assign({}, firstDoc, { fileName: '' }))
);
Expand Down