commit 80210873071bcf218063ad0a60e1767592797ea5
parent 51bc13358a9909734a6504ebf29e64b0c06b332d
Author: Konstantin Tarkus <hello@tarkus.me>
Date: Mon, 9 Jun 2014 14:36:02 +0400
Update README.md and index.html
Diffstat:
2 files changed, 16 insertions(+), 13 deletions(-)
diff --git a/README.md b/README.md
@@ -21,11 +21,11 @@
```
.
-├── /bower_components/ # 3rd party client-side libraries
-├── /build/ # The folder for compiled output
-├── /docs/ # Documentation files
-├── /node_modules/ # Node.js-based dev tools and utilities
-├── /src/ # The source code of the application
+├── /bower_components/ # 3rd party client-side libraries
+├── /build/ # The folder for compiled output
+├── /docs/ # Documentation files
+├── /node_modules/ # Node.js-based dev tools and utilities
+├── /src/ # The source code of the application
│ ├── /assets/
│ ├── /data/
│ ├── /common/
@@ -36,9 +36,9 @@
│ ├── /app.jsx
│ ├── /app.less
│ └── /index.html
-├── /test/ # Unit, integration and load tests
-│ ├── /e2e/ # End-to-end tests
-│ └── /unit/ # Unit tests
+├── /test/ # Unit, integration and load tests
+│ ├── /e2e/ # End-to-end tests
+│ └── /unit/ # Unit tests
└── ...
```
@@ -46,7 +46,7 @@
To get started you can simply clone the repo and install the dependencies:
-```
+```shell
> git clone https://github.com/kriasoft/React-Seed MyApp && cd MyApp
> npm install -g gulp # Install Gulp task runner globally
> npm install # Install Node.js components listed in ./package.json
@@ -55,8 +55,14 @@ To get started you can simply clone the repo and install the dependencies:
To compile the application and start a dev server just run:
+```shell
+> gulp # or, `gulp --production`
```
-> gulp
+
+To build the project, without starting a web server run:
+
+```shell
+> gulp build # or, `gulp build --production`
```
Now browse to the app at [http://localhost:8080/](http://localhost:8080/)
diff --git a/src/index.html b/src/index.html
@@ -13,9 +13,6 @@
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
- <!-- Add your site or application content here -->
- <p>Hello world! This is HTML5 Boilerplate.</p>
-
<script src="app.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->