Skip to content

Commit 2d1e0c3

Browse files
fixes to documentation
1 parent cdb4465 commit 2d1e0c3

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ settings.production.json
1212

1313
# Build node_modules locally.
1414
node_modules/
15+
16+
# Ignore the debug log generated when, for example, ESLint fails.
17+
npm-debug.log

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Now your local repo should contain the template. To test that everything is OK,
3737

3838
```
3939
$ meteor npm install
40-
$ meteor --settings ../config/settings.development.json
40+
$ meteor npm run start
4141
```
4242

4343
If all goes well, the template application will appear at [http://localhost:3000](http://localhost:3000). You can login using the credentials in [settings.development.json](https://github.com/ics-software-engineering/meteor-application-template/blob/master/config/settings.development.json), or else register a new account.
@@ -272,7 +272,7 @@ The application includes a [.eslintrc](https://github.com/ics-software-engineeri
272272
[~/meteor-application-template/app]-> meteor npm run lint
273273
274274
> meteor-application-template@ lint /Users/philipjohnson/meteor-application-template/app
275-
> eslint .
275+
> eslint --quiet ./imports
276276
```
277277

278278
ESLint should run without generating any errors.

app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "meteor-application-template",
33
"private": true,
44
"scripts": {
5-
"start": "meteor --settings ../config/settings.development.json",
6-
"lint": "eslint ."
5+
"start": "meteor --no-release-check --settings ../config/settings.development.json",
6+
"lint": "eslint --quiet ./imports"
77
},
88
"dependencies": {
99
"bcrypt": "^0.8.7",

0 commit comments

Comments
 (0)