1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-17 07:45:52 +01:00
verdaccio/packages/plugins/ui-theme/tools/_verdaccio.config.yaml
Juan Picado aecbd226de
feat: allow ui hide package managers on sidebar (#2226)
* feat: allow ui hide package managers on sidebar

* add test

* add changeset

* chore: remove snapshot

* chore: update config
2021-05-04 21:15:07 +02:00

59 lines
934 B
YAML

web:
title: Verdaccio Local Dev
sort_packages: asc
primary_color: #CCC
pkgManagers:
- npm
- yarn
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
logs:
- { type: stdout, format: pretty, level: trace }