0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/packages/plugins/ui-theme/tools/_verdaccio.config.yaml
Juan Picado d43894e8f6
feat: rework web header for mobile, add new settings and raw manifest button (#3129)
* feat: rework header, dialogs and new raw mode

* chore: add test for raw button and hide download tarball

* chore: add test hide footer

* chore: add docs to config files

* chore: add changeset

* chore: enable raw by default
2022-04-16 12:26:02 +02:00

63 lines
1,006 B
YAML

web:
title: Verdaccio Local Dev
sort_packages: asc
primary_color: #CCC
# showRaw: true
# darkMode: true
pkgManagers:
- npm
- yarn
- pnpm
flags:
searchRemote: true
plugins: ../
auth:
auth-memory:
users:
foo:
name: test
password: test #pragma: allowlist secret
bar:
name: bar
password: test #pragma: allowlist secret
security:
api:
jwt:
sign:
expiresIn: 120d
notBefore: 1
web:
sign:
expiresIn: 100d
notBefore: 0
uplinks:
ver:
url: https://registry.verdaccio.org/
packages:
'@*/*':
access: $all
publish: $authenticated
unpublish: $authenticated
'vue':
access: foo
publish: foo
unpublish: foo
'jquery':
access: $all
publish: bar
unpublish: bar
'**':
access: $all
publish: $authenticated
unpublish: $authenticated
proxy: ver
middlewares:
audit:
enabled: true
log: { type: stdout, format: pretty, level: trace }