Skip to content

Commit 1079f66

Browse files
committed
Update README.md
1 parent 1c73833 commit 1079f66

File tree

1 file changed

+24
-22
lines changed

1 file changed

+24
-22
lines changed

README.md

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@ Is a solution full-stack JavaScript, based on MongoDB, Express, AngularJS, Node.
1717

1818
Are some of the packages that we use to make this dream come true.
1919

20-
## Getting Started
21-
22-
### Prerequisites
20+
## Prerequisites
2321
Install Node.js e MongoDB.
2422

25-
#### Install Node.js
23+
### Install Node.js
2624
Installing Node.js via package manager access <a href="https://nodejs.org/en/download/package-manager/">https://nodejs.org/en/download/package-manager/</a>
2725

28-
##### Notes
26+
#### Notes
2927
if you use Debian and Ubuntu based Linux distributions be sure to install **build-essential**.
3028
```bash
3129
$ sudo apt-get install -y build-essential
@@ -36,66 +34,68 @@ if you use Enterprise Linux and Fedora be sure to install **gcc-c++ make**.
3634
$ yum install gcc-c++ make
3735
```
3836

39-
#### Install MongoDB
37+
### Install MongoDB
4038
Installing MongoDB access <a href="https://docs.mongodb.org/manual/installation/">https://docs.mongodb.org/manual/installation/</a>
4139

42-
##### Note
40+
#### Note
4341
If you've never worked with a MongoDB read in your documentation before you install it, official documentation access, <a href="https://docs.mongodb.org/manual/">https://docs.mongodb.org/manual/</a>
4442

45-
### Installation
43+
## Installation
4644

47-
#### Before installing
4845
Before you begin installing MEANStack we will update the NPM and soon after installing Gulp, Bower and nodemon in the global scope.
4946

50-
##### Updating NPM
47+
### Updating NPM
5148
```bash
5249
$ npm update -g npm
5350
```
5451

55-
##### Install Gulp
52+
### Install Gulp
5653
```bash
5754
$ npm install -g gulp
5855
```
5956

60-
##### Install Bower
57+
### Install Bower
6158
```bash
6259
$ npm install -g bower
6360
```
6461

65-
##### Install Nodemon
62+
### Install Nodemon
6663
Nodemon is a utility that will monitor for any changes in your source and automatically restart your server. Perfect for development. Install it using npm.
6764
```bash
6865
$ npm install -g nodemon
6966
```
7067

71-
##### Note
68+
#### Note
7269
If you already have the Gulp and Bower recommend updates them.
7370
```bash
7471
$ npm update -g gulp bower
7572
```
7673

77-
#### Install
78-
**The first step** is to clone the repository GitHub.
74+
### The first step
75+
Clone the repository GitHub.
7976
```bash
8077
$ git clone git@github.com:developscript/meanstack.io.git
8178
```
8279

83-
**The second step** is to install the back-end dependencies.
80+
### The second step
81+
Install the back-end dependencies.
8482
```bash
8583
$ npm install
8684
```
8785

88-
**The third step** is to install the front-end dependencies.
86+
### The third step
87+
Install the front-end dependencies.
8988
```bash
9089
$ bower install
9190
```
9291

93-
**The fourth step** is to configure the application. For this we have a sample file "config/config.example.js" copy and rename it to "config/config-development.js".
92+
### The fourth step
93+
Configure the application. For this we have a sample file "config/config.example.js" copy and rename it to "config/config-development.js".
9494
```bash
9595
$ cp config/config.example.js config/config-development.js
9696
```
9797

98-
##### Configuration file.
98+
#### Configuration file.
9999
The file "config/config-development.js" represents the configuration of your environment. What ? within package.json we have:
100100
```js
101101
"start": "NODE_ENV=development nodemon ./bin/www"
@@ -105,12 +105,14 @@ The "NODE_ENV" property sets which environment setting will be used. Example:
105105
"start": "NODE_ENV=production nodemon ./bin/www" // Its configuration file is "config/config-production.js".
106106
```
107107

108-
**The fifth step** is to run Gulp.
108+
### The fifth step
109+
Run Gulp.
109110
```bash
110111
$ gulp
111112
```
112113

113-
**The sixth step** is to start the application.
114+
### The sixth step
115+
Start the application.
114116
```bash
115117
$ npm start
116118
```

0 commit comments

Comments
 (0)