Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit 08a2c0f

Browse files
committed
Fixed Comments and README
1 parent 956ec25 commit 08a2c0f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ This will clone the latest version of the MEAN.JS repository to a **meanjs** fol
4545
### Downloading The Repository Zip File
4646
Another way to use the MEAN.JS boilerplate is to download a zip copy from the [master branch on github](https://github.com/meanjs/mean/archive/master.zip). You can also do this using `wget` command:
4747
```
48-
$ wget https://github.com/meanjs/mean/archive/master.zip -O MEANJS.zip; unzip MEANJS.zip; rm MEANJS.zip
48+
$ wget https://github.com/meanjs/mean/archive/master.zip -O meanjs.zip; unzip meanjs.zip; rm meanjs.zip
4949
```
50-
You'll be able to rename **mean-master** after your project name and create your own git repo.
50+
Don't forget to rename **mean-master** after your project name.
5151

5252
## Quick Install
5353
Once you've downloaded the boilerplate and installed all the prerequisites, you're just a few steps away from starting to develop you MEAN application.

config/config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
var _ = require('lodash'),
44
utilities = require('./utilities');
55

6+
// Look for a valid NODE_ENV variable and if one cannot be found load the development NODE_ENV
67
process.env.NODE_ENV = ~utilities.walk('./config/env', /(.*)\.js$/).map(function(file) {
78
return file.split('/').pop().slice(0, -3);
89
}).indexOf(process.env.NODE_ENV) ? process.env.NODE_ENV : 'development';
@@ -11,4 +12,4 @@ process.env.NODE_ENV = ~utilities.walk('./config/env', /(.*)\.js$/).map(function
1112
module.exports = _.extend(
1213
require('./env/all'),
1314
require('./env/' + process.env.NODE_ENV) || {}
14-
);
15+
);

0 commit comments

Comments
 (0)