Skip to content

Commit f6b5044

Browse files
committed
Update README to mention npm install step
1 parent 7d058f1 commit f6b5044

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Diff for: README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ If you are looking for just the basic Meteor file-collection sample app, it can
44

55
This demo app uses [file-collection's](https://atmospherejs.com/vsivsi/file-collection) built-in support for [Resumable.js](http://www.resumablejs.com/) to allow drag and drop uploading of image files into a basic thumbnail gallery. It uses [job-collection](https://atmospherejs.com/vsivsi/job-collection) to automate creation of thumbnail images for each uploaded file. Besides the gallery view, the sample app also has "file" and "job" views to observe and manage the underlying file and job collections directly and given examples for how basic UI controls for these packages can be implemented.
66

7-
To set-up: just clone this repo, cd into its directory and run `meteor`, once it starts up point your browser at `http://localhost:3000/`.
7+
To set-up: just clone this repo, cd into its directory, run:
8+
9+
```sh
10+
# This line only needs to be run the first time
11+
meteor npm install
12+
13+
meteor
14+
```
15+
16+
Once it starts up point your browser at `http://localhost:3000/`.
817

918
You will also need to have [graphicsmagick](http://www.graphicsmagick.org/) installed on the server for use in making the image thumbnails. This may be easily installed on Mac OS X using MacPorts or Brew, and on Linux using your preferred package manager.

0 commit comments

Comments
 (0)