28 lines
407 B
Markdown
28 lines
407 B
Markdown
## How to run the project
|
|
|
|
1. Install the dependencies:
|
|
|
|
```bash
|
|
# npm
|
|
npm install
|
|
```
|
|
|
|
2. Start the development server:
|
|
|
|
```bash
|
|
# Using gulp
|
|
npm run dev
|
|
```
|
|
|
|
Now you should be able to see the project running at [localhost:3000](http://localhost:3000).
|
|
|
|
4. Open `./index.html` in your editor and start editing!
|
|
|
|
## For production
|
|
|
|
```bash
|
|
# Using gulp
|
|
npm run build
|
|
|
|
```
|