-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
108 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,4 +47,5 @@ Thumbs.db | |
|
||
docs/examples/** | ||
|
||
.nx/cache | ||
.nx/cache | ||
.verdacio/prod/htpasswd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
strict-peer-dependencies=false | ||
auto-install-peers=true | ||
ignore-scripts=true | ||
# registry=http://localhost:4873 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# path to a directory with all packages | ||
storage: ../tmp/local-registry/storage | ||
|
||
# a list of other known repositories we can talk to | ||
uplinks: | ||
npmjs: | ||
url: https://registry.npmjs.org/ | ||
maxage: 60m | ||
|
||
auth: | ||
htpasswd: | ||
file: ./htpasswd | ||
max_users: 1 | ||
|
||
security: | ||
api: | ||
jwt: | ||
sign: | ||
expiresIn: 365d | ||
notBefore: 1 | ||
web: | ||
sign: | ||
expiresIn: 7d | ||
|
||
packages: | ||
'@linkerry/*': | ||
access: $authenticated | ||
publish: $authenticated | ||
'@*/*': | ||
access: $authenticated | ||
publish: $authenticated | ||
proxy: npmjs | ||
'**': | ||
access: $authenticated | ||
publish: $authenticated | ||
proxy: npmjs | ||
# '@linkerry/*': | ||
# # scoped packages | ||
# # you can specify usernames/groupnames (depending on your auth plugin) | ||
# # and three keywords: "$all", "$anonymous", "$authenticated" | ||
# access: '$authenticated' | ||
# publish: '$authenticated' | ||
# '**': | ||
# proxy: npmjs | ||
# access: '$authenticated' | ||
# publish: '$authenticated' | ||
# # '**': | ||
# # # give all users (including non-authenticated users) full access | ||
# # # because it is a local registry | ||
# # access: $all | ||
# # publish: $all | ||
# # unpublish: $all | ||
|
||
# # # if package is not available locally, proxy requests to npm registry | ||
# # proxy: npmjs | ||
|
||
# log settings | ||
logs: | ||
type: stdout | ||
format: pretty | ||
level: warn | ||
|
||
publish: | ||
allow_offline: true # set offline to true to allow publish offline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: '3.9' | ||
|
||
services: | ||
verdaccio: | ||
image: verdaccio/verdaccio | ||
container_name: verdaccio | ||
ports: | ||
- ${VIRTUAL_PORT}:${VIRTUAL_PORT} | ||
env_file: | ||
- .env | ||
environment: | ||
- VIRTUAL_HOST=${VIRTUAL_HOST} | ||
- LETSENCRYPT_HOST=${LETSENCRYPT_HOST} | ||
- [email protected] | ||
- VIRTUAL_PORT=${VIRTUAL_PORT} | ||
volumes: | ||
- './storage:/verdaccio/storage' | ||
- './conf:/verdaccio/conf' | ||
|
||
volumes: | ||
verdaccio: | ||
driver: local | ||
|
||
networks: | ||
default: | ||
external: | ||
name: ${NETWORK:-proxy} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ services: | |
env_file: | ||
- .env | ||
environment: | ||
- VIRTUAL_HOST=${PORT_API_GATEWAY} | ||
- VIRTUAL_HOST=${VIRTUAL_HOST} | ||
- LETSENCRYPT_HOST=${LETSENCRYPT_HOST} | ||
- [email protected] | ||
- VIRTUAL_PORT=${VIRTUAL_PORT} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
rm -rf ~/.cache | ||
du -sh /var/log | ||
rm -rf ~/tmp | ||
rm -rf ~/tmp | ||
apt-get autoremove | ||
sudo du -sh /var/cache/apt | ||
sudo journalctl --vacuum-time=3d |
Empty file.
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters