-
- Downloads
- add a new /cs/:username/:signature to support signing the image checksum (for use with HiveAuth)
- update typescript and ts-node - add file system blob storage - fix unit tests - make it work with docker - add docker-compose.yml for ease of use
parent
9368369a
No related branches found
No related tags found
Showing
- Makefile 3 additions, 1 deletionMakefile
- config/custom-environment-variables.toml 4 additions, 0 deletionsconfig/custom-environment-variables.toml
- config/default.toml 3 additions, 3 deletionsconfig/default.toml
- config/production.toml 8 additions, 3 deletionsconfig/production.toml
- config/test.toml 2 additions, 0 deletionsconfig/test.toml
- docker-compose.yml 19 additions, 0 deletionsdocker-compose.yml
- package.json 3 additions, 2 deletionspackage.json
- src/common.ts 5 additions, 2 deletionssrc/common.ts
- src/routes.ts 2 additions, 1 deletionsrc/routes.ts
- src/upload.ts 117 additions, 16 deletionssrc/upload.ts
- test/index.ts 1 addition, 1 deletiontest/index.ts
- test/upload.ts 17 additions, 13 deletionstest/upload.ts
- yarn.lock 66 additions, 32 deletionsyarn.lock
docker-compose.yml
0 → 100644
... | @@ -16,6 +16,7 @@ | ... | @@ -16,6 +16,7 @@ |
"bunyan": "^2.0.2", | "bunyan": "^2.0.2", | ||
"busboy": "^0.2.14", | "busboy": "^0.2.14", | ||
"config": "^1.29.4", | "config": "^1.29.4", | ||
"fs-blob-store": "^6.0.0", | |||
"hivesigner": "^3.2.0", | "hivesigner": "^3.2.0", | ||
"koa": "^2.3.0", | "koa": "^2.3.0", | ||
"koa-router": "^7.4.0", | "koa-router": "^7.4.0", | ||
... | @@ -49,8 +50,8 @@ | ... | @@ -49,8 +50,8 @@ |
"mocha-junit-reporter": "^1.17.0", | "mocha-junit-reporter": "^1.17.0", | ||
"nyc": "^14.1.1", | "nyc": "^14.1.1", | ||
"onchange": "^6.1.0", | "onchange": "^6.1.0", | ||
"ts-node": "^7.0.0", | "ts-node": "^8.10.2", | ||
"tslint": "^5.16.0", | "tslint": "^5.16.0", | ||
"typescript": "^2.7.1" | "typescript": "^3.9.6" | ||
} | } | ||
} | } |
Please register or sign in to comment