Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ A modern role-based progressive CloudStack UI based on Vue.js and Ant Design.

Install node: (Debian/Ubuntu)

curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
curl -sL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs
# Or use distro provided: sudo apt-get install npm nodejs

Install node: (CentOS/Fedora/RHEL)

curl -sL https://rpm.nodesource.com/setup_16.x | sudo bash -
curl -sL https://rpm.nodesource.com/setup_20.x | sudo bash -
sudo yum install nodejs

Install node: (Mac OS)

brew install node@16
brew install node@20

Optionally, you may also install system-wide dev tools:

Expand All @@ -44,6 +44,10 @@ To use the community Simulator QA server you can do this:

echo "CS_URL=https://qa.cloudstack.cloud" > .env.local

This may be required for newer npm versions:

export NODE_OPTIONS=--openssl-legacy-provider

Build and run:

npm run serve
Expand Down
6 changes: 4 additions & 2 deletions ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cloudstack-ui",
"description": "Modern role-based Apache CloudStack UI",
"version": "4.19.0",
"version": "4.22.0",
"homepage": "https://cloudstack.apache.org/",
"repository": {
"type": "git",
Expand Down Expand Up @@ -106,8 +106,10 @@
"uglifyjs-webpack-plugin": "^2.2.0",
"vue-jest": "^5.0.0-0",
"vue-svg-loader": "^0.17.0-beta.2",
"webpack": "^4.46.0"
"webpack": "^4.46.0",
"node-gyp": "10.0.1", "nan": "2.18.0"
},
"resolutions": { "nan": "2.18.0" },
"eslintConfig": {
"root": true,
"env": {
Expand Down
Loading