OVH Control Panel Web UI
- You must have
nodejs
withnpm
installed. - You must have
bower
installed (npm install -g bower
) - You must have
grunt
installed (npm install -g grunt-cli
)
make install
First you have to activate the developer mode in the Manager V6.
To be able to run manager in dev mode using http2.
make gen-certificate
If you want, you can also generate a certificate by hand:
mkdir -p server/certificate
openssl genrsa -des3 -out server/certificate/server.key 1024
openssl req -new -key server/certificate/server.key -out server/certificate/server.csr
cp server/certificate/server.key server/certificate/server.key.tmp
openssl rsa -in server/certificate/server.key.tmp -out server/certificate/server.key
openssl x509 -req -days 365 -in server/certificate/server.csr -signkey server/certificate/server.key -out server/certificate/server.crt
rm server/certificate/server.key.tmp
A full guide can be found for example here.
make dev
The manager is running on https://localhost:9000
And start developing.
- Contribute: https://github.com/ovh-ux/ovh-ux-guidelines/blob/master/.github/CONTRIBUTING.md
- Report bugs: https://github.com/ovh-ux/ovh-manager-web/issues
See https://github.com/ovh-ux/ovh-manager-web/blob/master/LICENSE