Skip to content

Latest commit

 

History

History
98 lines (62 loc) · 1.81 KB

README.md

File metadata and controls

98 lines (62 loc) · 1.81 KB

Endpoints

You have a postman collection available in /doc

Install

Client

Add to hosts file

127.0.0.1 rest-api.dev

Create Docker containers

Build and run the docker containers (nodejs and mongodb)

docker-compose up

Install Node Api Server

In a new terminal run a nodjs container:

docker run -it -v /home/eneko/workspace/kubide/server-api:/server-api node:0.12 /bin/bash

Install all the npm dependencies:

npm install

Install MongoDB

In a new terminal attach to the mongodb container:

docker exec -it mongodb mongo

Fix error with authSchema in mongodb (Stackoverflow):

mongo
use admin
db.system.users.remove({})
db.system.version.remove({})
db.system.version.insert({ "_id" : "authSchema", "currentVersion" : 3 })

Restart containers:

Ctrl+c
docker-compose up

In a new terminal reattach to the mongodb container:

docker exec -it mongodb mongo

Create mongodb user:

use restdb

db.notes.insert({text:'hello kubide'});

db.createUser( {
    "user" : "mongo",
    "pwd" : "mongo",
    "roles": [
        { "role": "readWrite", "db": "restdb" }
    ]
});

Shut down containers:

Ctrl+c

Run Rest Api

Start containers:

docker-compose up

Now you can access all the endpoints