You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-1
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,15 @@ If you are looking for just the basic Meteor file-collection sample app, it can
4
4
5
5
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.
6
6
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/`.
8
17
9
18
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