mirror of
https://github.com/SomboChea/ui
synced 2024-11-04 21:54:30 +07:00
6f8d891c42
vue and jquery as examples
56 lines
828 B
YAML
56 lines
828 B
YAML
web:
|
|
title: Verdaccio Local Dev
|
|
sort_packages: asc
|
|
primary_color: #CCC
|
|
|
|
plugins: ../
|
|
|
|
auth:
|
|
auth-memory:
|
|
users:
|
|
foo:
|
|
name: test
|
|
password: test
|
|
bar:
|
|
name: bar
|
|
password: test
|
|
security:
|
|
api:
|
|
jwt:
|
|
sign:
|
|
expiresIn: 120d
|
|
notBefore: 1
|
|
web:
|
|
sign:
|
|
expiresIn: 100d
|
|
notBefore: 1
|
|
|
|
uplinks:
|
|
npmjs:
|
|
url: https://registry.npmjs.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
|
|
middlewares:
|
|
audit:
|
|
enabled: true
|
|
|
|
logs:
|
|
- { type: stdout, format: pretty, level: trace }
|
|
|