Skip to content

Commit 3626678

Browse files
authored
Merge pull request #129 from RandomAPI/v1.3
API v1.3
2 parents 58375ec + ef246b7 commit 3626678

File tree

364 files changed

+206974
-66620
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

364 files changed

+206974
-66620
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ public/dist
44
.viewsMin
55
npm-debug.log
66
public/download
7+
.nyc_output

.travis.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
language: node_js
22
node_js:
3-
- "6.4"
3+
- "9"
4+
- "10"
5+
- "11"
6+
- "12"
7+
env:
8+
- spec=true
9+
install:
10+
- npm install
11+
script:
12+
- npm run ciTest
13+
- codecov -f .nyc_output/*.json
414
before_script:
5-
- npm install -g gulp
6-
- gulp build
7-
script: gulp spec
15+
- npm run build
816
services:
9-
- mongodb
10-
sudo: required
17+
- mongodb

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Randomuser.me-Node
22
[![Build Status](https://travis-ci.org/RandomAPI/Randomuser.me-Node.svg?branch=master)](https://travis-ci.org/RandomAPI/Randomuser.me-Node)
3-
[![Stories in Ready](https://badge.waffle.io/RandomAPI/Randomuser.me-Node.png?label=ready&title=Ready)](https://waffle.io/RandomAPI/Randomuser.me-Node)
3+
[![codecov](https://codecov.io/gh/RandomAPI/Randomuser.me-Node/branch/master/graph/badge.svg)](https://codecov.io/gh/RandomAPI/Randomuser.me-Node)
44

55
### About
66
This is the source code that powers the randomuser.me User Generator.
@@ -26,13 +26,18 @@ sort -u <file> -o <file>
2626

2727
4\. Please don't submit requests that say "make this nationality". We will accept helpful contributions, but not orders :)
2828

29+
### Requirements
30+
31+
Node v9.0.0+
32+
MongoDB
33+
2934
### How to use
3035

3136
1. Run `npm install`
3237

33-
2. Make sure you have gulp installed globally (npm i -g gulp) and run `gulp build`
38+
2. Run `npm run build` to build views and minify js/css
3439

35-
3. Run `gulp` to verify all tests pass
40+
3. Run `npm test` and verify all tests pass
3641

3742
4. Start the server with `npm start`
3843

0 commit comments

Comments
 (0)