-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Max Brauer
committed
Mar 11, 2020
1 parent
4c2f668
commit 34edfb5
Showing
7 changed files
with
181 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
const common = { | ||
baseUrl: 'http://localhost:3000', | ||
port: 3000 | ||
}; | ||
|
||
module.exports = common; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
const Koa = require('koa'); | ||
const bodyParser = require('koa-bodyparser'); | ||
const cors = require('@koa/cors'); | ||
|
||
const config = require('./config'); | ||
const router = require('./routes/index'); | ||
|
||
const app = new Koa(); | ||
|
||
app | ||
.use(cors()) | ||
.use(bodyParser()) | ||
.use(router.routes()) | ||
.use(router.allowedMethods()); | ||
|
||
app.listen(config.port, () => { | ||
console.log(`App is listening on ${config.port}.`); | ||
}); |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const { SwaggerRouter } = require('koa-swagger-decorator'); | ||
|
||
const router = new SwaggerRouter(); | ||
// router.use('/api', ApiRouter.routes()); | ||
|
||
// swagger docs avaliable at http://localhost:3000/swagger-html | ||
router.swagger({ | ||
title: 'MDV Fermata', | ||
description: 'MDV Fermata API documentation', | ||
version: '0.1.0', | ||
}); | ||
router.mapDir(__dirname + '/api'); | ||
|
||
module.exports = router; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,12 @@ | |
# yarn lockfile v1 | ||
|
||
|
||
"@koa/cors@^3.0.0": | ||
version "3.0.0" | ||
resolved "https://registry.yarnpkg.com/@koa/cors/-/cors-3.0.0.tgz#df021b4df2dadf1e2b04d7c8ddf93ba2d42519cb" | ||
dependencies: | ||
vary "^1.1.2" | ||
|
||
"@mrmlnc/readdir-enhanced@^2.2.1": | ||
version "2.2.1" | ||
resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" | ||
|
@@ -220,6 +226,10 @@ braces@^2.3.1: | |
split-string "^3.0.2" | ||
to-regex "^3.0.1" | ||
|
||
[email protected]: | ||
version "3.1.0" | ||
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" | ||
|
||
cache-base@^1.0.1: | ||
version "1.0.1" | ||
resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" | ||
|
@@ -254,6 +264,15 @@ class-utils@^0.3.5: | |
isobject "^3.0.0" | ||
static-extend "^0.1.1" | ||
|
||
co-body@^6.0.0: | ||
version "6.0.0" | ||
resolved "https://registry.yarnpkg.com/co-body/-/co-body-6.0.0.tgz#965b9337d7f5655480787471f4237664820827e3" | ||
dependencies: | ||
inflation "^2.0.0" | ||
qs "^6.5.2" | ||
raw-body "^2.3.3" | ||
type-is "^1.6.16" | ||
|
||
co@^4.6.0: | ||
version "4.6.0" | ||
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" | ||
|
@@ -294,6 +313,10 @@ copy-descriptor@^0.1.0: | |
version "0.1.1" | ||
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" | ||
|
||
copy-to@^2.0.1: | ||
version "2.0.1" | ||
resolved "https://registry.yarnpkg.com/copy-to/-/copy-to-2.0.1.tgz#2680fbb8068a48d08656b6098092bdafc906f4a5" | ||
|
||
core-util-is@^1.0.2: | ||
version "1.0.2" | ||
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" | ||
|
@@ -530,7 +553,7 @@ http-assert@^1.3.0: | |
deep-equal "~1.0.1" | ||
http-errors "~1.7.2" | ||
|
||
http-errors@^1.3.1, http-errors@^1.6.3, http-errors@~1.7.2: | ||
http-errors@1.7.3, http-errors@^1.3.1, http-errors@^1.6.3, http-errors@~1.7.2: | ||
version "1.7.3" | ||
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" | ||
dependencies: | ||
|
@@ -540,10 +563,20 @@ http-errors@^1.3.1, http-errors@^1.6.3, http-errors@~1.7.2: | |
statuses ">= 1.5.0 < 2" | ||
toidentifier "1.0.0" | ||
|
||
[email protected]: | ||
version "0.4.24" | ||
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" | ||
dependencies: | ||
safer-buffer ">= 2.1.2 < 3" | ||
|
||
ignore@^3.3.5: | ||
version "3.3.10" | ||
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" | ||
|
||
inflation@^2.0.0: | ||
version "2.0.0" | ||
resolved "https://registry.yarnpkg.com/inflation/-/inflation-2.0.0.tgz#8b417e47c28f925a45133d914ca1fd389107f30f" | ||
|
||
inflight@^1.0.4: | ||
version "1.0.6" | ||
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" | ||
|
@@ -705,6 +738,13 @@ kind-of@^6.0.0, kind-of@^6.0.2: | |
version "6.0.3" | ||
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" | ||
|
||
koa-bodyparser@^4.2.1: | ||
version "4.2.1" | ||
resolved "https://registry.yarnpkg.com/koa-bodyparser/-/koa-bodyparser-4.2.1.tgz#4d7dacb5e6db1106649b595d9e5ccb158b6f3b29" | ||
dependencies: | ||
co-body "^6.0.0" | ||
copy-to "^2.0.1" | ||
|
||
koa-compose@^3.0.0: | ||
version "3.2.1" | ||
resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-3.2.1.tgz#a85ccb40b7d986d8e5a345b3a1ace8eabcf54de7" | ||
|
@@ -937,10 +977,23 @@ posix-character-classes@^0.1.0: | |
version "0.1.1" | ||
resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" | ||
|
||
qs@^6.5.2: | ||
version "6.9.1" | ||
resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.1.tgz#20082c65cb78223635ab1a9eaca8875a29bf8ec9" | ||
|
||
ramda@^0.25.0: | ||
version "0.25.0" | ||
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.25.0.tgz#8fdf68231cffa90bc2f9460390a0cb74a29b29a9" | ||
|
||
raw-body@^2.3.3: | ||
version "2.4.1" | ||
resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c" | ||
dependencies: | ||
bytes "3.1.0" | ||
http-errors "1.7.3" | ||
iconv-lite "0.4.24" | ||
unpipe "1.0.0" | ||
|
||
regex-not@^1.0.0, regex-not@^1.0.2: | ||
version "1.0.2" | ||
resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" | ||
|
@@ -974,6 +1027,10 @@ safe-regex@^1.1.0: | |
dependencies: | ||
ret "~0.1.10" | ||
|
||
"safer-buffer@>= 2.1.2 < 3": | ||
version "2.1.2" | ||
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" | ||
|
||
set-value@^2.0.0, set-value@^2.0.1: | ||
version "2.0.1" | ||
resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" | ||
|
@@ -1099,6 +1156,10 @@ union-value@^1.0.0: | |
is-extendable "^0.1.1" | ||
set-value "^2.0.1" | ||
|
||
[email protected]: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" | ||
|
||
unset-value@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" | ||
|