You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. other questions: How to apply in the inner network CI environment?
Support offline / ci mode! Skip plugin version check.
Provide Docker images, use offline / CI mode, install all plug -in by default, and then use the mirror installation environment set by environment variable settings, such as: VFOX_NODE_DIST_MIRROR.
The text was updated successfully, but these errors were encountered:
By the way, environment variables may be set separately for specific projects and saved in the .tool-versions / .vfoxrc file, which takes precedence over system environment variables, so that people do not have to modify environment variables frequently for different environments.
example: .vfoxrc
{
"env": { // optional, .env priority is higher than system env"VFOX_NODE_DIST_MIRROR": "https://npmmirror.com/mirrors/node"
},
"profile": { // optional, profile.env priority is higher than .env"dev": {
"env": {
"VFOX_NODE_DIST_MIRROR": "https://npmmirror.com/mirrors/node"
}
},
"ci": {
"env": {
"VFOX_NODE_DIST_MIRROR": "http://192.168.1.100:8000/repository/mirrors/node"
}
}
},
"tools": {
"nodejs": "v18.19.0",
"java": "21"
}
}
1. Your usage scenarios?
Support custom mirror address, such as:
For github, you can use: https://mirror.ghproxy.com
For nodejs, you can use: https://npmmirror.com/mirrors/node/ or internal service of the enterprise
2. What is your expected outcome?
Use environment variables:
3. other questions: How to apply in the inner network CI environment?
Support offline / ci mode! Skip plugin version check.
Provide Docker images, use offline / CI mode, install all plug -in by default, and then use the mirror installation environment set by environment variable settings, such as: VFOX_NODE_DIST_MIRROR.
The text was updated successfully, but these errors were encountered: