Skip to content

Commit 1b2ce86

Browse files
committed
Initial commit
0 parents  commit 1b2ce86

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
uploads
2+
saved

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# microservices-demo
2+
3+
A microservices demo using Zeit's [micro](https://github.com/zeit/micro)
4+
5+
## Install
6+
7+
First we will need to install micro in our Node installation as a global package
8+
9+
```
10+
$ npm install -g micro
11+
```
12+
13+
## Run a microservice
14+
15+
```
16+
$ micro name-of-microservice.js
17+
```

package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "microservices-demo",
3+
"version": "1.0.0",
4+
"description": "A microservices demo using Zeit's micro",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/julianduque/microservices-demo.git"
8+
},
9+
"author": "Julian Duque <julianduquej@gmail.com>",
10+
"license": "MIT",
11+
"bugs": {
12+
"url": "https://github.com/julianduque/microservices-demo/issues"
13+
},
14+
"homepage": "https://github.com/julianduque/microservices-demo#readme",
15+
"dependencies": {
16+
"instagram_js_filter": "^1.4.0",
17+
"is-image": "^1.0.1",
18+
"micro": "^7.3.2",
19+
"micro-upload": "^1.0.0",
20+
"mime-types": "^2.1.15",
21+
"uuid": "^3.0.1"
22+
}
23+
}

0 commit comments

Comments
 (0)