Compare commits

...

6 Commits

Author SHA1 Message Date
20d2c1b7a0
version bump 2022-10-18 13:58:53 +02:00
008d1c949d
stuff 2022-10-18 13:58:37 +02:00
0fc63ed17d
Merge branch 'main' of https://github.com/cupcakearmy/morphus 2022-05-29 11:31:20 +02:00
a47d5974e4
stuff 2022-05-29 11:31:18 +02:00
21f570a289
Update README.md 2022-05-29 11:08:05 +02:00
9500bcf68c
logo 2022-05-29 10:42:02 +02:00
9 changed files with 247 additions and 298 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@ dist
assets
*.tsbuildinfo
data
demo
.vscode
# Configs

View File

@ -3,6 +3,8 @@ FROM node:16-alpine as base
WORKDIR /app
RUN npm -g i pnpm@7
# Needed for node-gyp
RUN apk add --no-cache python3
# BUILDER
FROM base as builder

View File

@ -24,9 +24,9 @@ The heavy lifting is done by [`libvips`](https://github.com/libvips/libvips) and
- Domain protection
- Host verification
- Multiple storage adapters (Local, Minio, S3, GCP)
- Auto format based on `Accept` header and `user-agent`
- Auto format based on `Accept` header
- ETag caching
- Presets and optinal forcing of presets
- Presets and optional forcing of presets
## 🏗 Installation

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 KiB

After

Width:  |  Height:  |  Size: 163 KiB

View File

@ -0,0 +1,4 @@
logLevel: warn
allowedDomains:
- example.org

View File

@ -1,6 +1,6 @@
{
"name": "morphus",
"version": "1.0.0-rc.2",
"version": "1.0.0-rc.3",
"description": "",
"author": "Niccolo Borgioli",
"license": "MIT",
@ -20,12 +20,12 @@
"@types/convict": "^6.1.1",
"@types/flat": "^5.0.2",
"@types/js-yaml": "^4.0.5",
"@types/minio": "^7.0.13",
"@types/minio": "^7.0.14",
"@types/ms": "^0.7.31",
"@types/node": "^16.11.36",
"@types/node": "^16.11.66",
"@types/sharp": "^0.29.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.2"
"typescript": "^4.8.4"
},
"dependencies": {
"@fastify/caching": "^7.0.0",
@ -36,13 +36,13 @@
"convict": "^6.2.3",
"convict-format-with-validator": "^6.2.0",
"fast-crc32c": "^2.0.0",
"fastify": "^3.29.0",
"fastify": "^3.29.3",
"flat": "^5.0.2",
"js-yaml": "^4.1.0",
"minio": "^7.0.28",
"minio": "^7.0.32",
"ms": "^2.1.3",
"pino-pretty": "^7.6.1",
"sharp": "^0.29.3",
"sharp": "^0.31.1",
"under-pressure": "^5.8.1"
}
}

491
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -2,9 +2,10 @@ import { config, StorageType } from '../dist/src/config.js'
const schema = config._def
function stringAsMarkdownCode(string) {
return '`' + string + '`'
}
const asInlineCode = (s) => '`' + s + '`'
const formatInline = (s, empty = '') => (s === undefined ? empty : asInlineCode(s))
const formatEnv = (s) => formatInline(s, 'not supported')
const formatDefault = (s) => formatInline(s, '')
for (const storage of Object.values(StorageType)) {
const storageType = schema[storage]
@ -13,7 +14,21 @@ for (const storage of Object.values(StorageType)) {
| ---------------- | ------------------ | ------- | ------------------------ |
`
for (const [key, value] of Object.entries(storageType)) {
table += `| \`${storage}.${key}\` | \`${value.env}\` | ${value.default} | ${value.doc} |\n`
table += `| \`${storage}.${key}\` | ${formatEnv(value.env)} | ${formatDefault(value.default)} | ${value.doc} |\n`
}
console.log(table)
}
{
let table = `
| Config | Environment | Default | Description |
| ------- | ----------- | ------- | ------------ |
`
for (const [key, value] of Object.entries(schema)) {
if (Object.values(StorageType).includes(key)) continue
table += `| ${asInlineCode(key)} | ${formatEnv(value.env)} | ${formatDefault(value.default)} | ${value.doc} |\n`
}
console.log(table)

View File

@ -83,14 +83,14 @@ export const config = convict({
format: formatNullableStringOrRegexpArray,
default: null as NullableStringOrRegexpArray,
nullable: true,
env: 'ALLOWED_DOMAINS',
// env: 'ALLOWED_DOMAINS', // See: https://github.com/mozilla/node-convict/issues/399
},
allowedHosts: {
doc: 'The hosts that are allowed to access the images',
format: formatNullableStringOrRegexpArray,
default: null as NullableStringOrRegexpArray,
nullable: true,
env: 'ALLOWED_HOSTS',
// env: 'ALLOWED_HOSTS', // See: https://github.com/mozilla/node-convict/issues/399
},
cleanUrls: {
doc: 'Whether to clean URLs',
@ -103,7 +103,7 @@ export const config = convict({
maxAge: {
doc: 'The maximum age of a cached image',
format: String,
default: '1d',
default: '90d',
env: 'MAX_AGE',
},