Skip to content

Applications

All applications are located in the packages/manager/apps/* workspace.

It houses:

  • Container New.
  • Dashboard.
  • Large AngularJS applications.
  • A Sign-up form.
  • Several standalone applications.

The applications can be started for a specific region.

ApplicationRegion
ContainerEU / CA / US
DashboardEU / CA / US
Web CloudEU / CA
Bare Metal CloudEU / CA / US
Public CloudEU / CA / US
TelecomEU

Information

Depending on the requested region, the URL to access the API will be different

Container

Container app screenshot

How to start the application?

The container app contains all common elements to all applications. Running this command at the root folder, will launch a CLI that will prompt you to choose between launching your app in your container or not.

sh
$ yarn start
$ yarn start

After it's finished, the app within the container will be available at <http://localhost:9000>

The application can also be run from its own folder with the following command:

sh
$ yarn start:dev
$ yarn start:dev

How to build the application?

sh
$ yarn run build -p @ovh-ux/manager-container-app
$ yarn run build -p @ovh-ux/manager-container-app

Dashboard

Screenshot of the control panel

How to start the application?

sh
$ yarn workspace @ovh-ux/manager-hub-app run start:dev
$ yarn workspace @ovh-ux/manager-hub-app run start:dev

Go to <http://localhost:9000>

How to build the application?

sh
$ yarn run build -p @ovh-ux/manager-hub-app
$ yarn run build -p @ovh-ux/manager-hub-app

Web Cloud

Web cloud screenshot

How to start the application?

sh
$ yarn workspace @ovh-ux/manager-web run start:dev
$ yarn workspace @ovh-ux/manager-web run start:dev

Go to <http://localhost:9000>

How to build the application?

sh
$ yarn run build -p @ovh-ux/manager-web
$ yarn run build -p @ovh-ux/manager-web

Bare Metal Cloud

Bare metal cloud screenshot

Information

Both applications Bare Metal Cloud and Hosted Private Cloud are grouped under the following location: packages/manager/apps/dedicated. tab.

They can be started in different region with a given environment variable.

How to start the application?

sh
$ export REGION=EU
$ yarn workspace @ovh-ux/manager-dedicated run start:dev
$ export REGION=EU
$ yarn workspace @ovh-ux/manager-dedicated run start:dev

Go to <http://localhost:9000>

How to build the application?

sh
$ yarn run build -p @ovh-ux/manager-dedicated
$ yarn run build -p @ovh-ux/manager-dedicated

Public Cloud

Public cloud screenshot

Information

Application can be started in different region with a given environment variable.

How to start the application?

sh
$ export REGION=EU
$ yarn workspace @ovh-ux/manager-public-cloud run start:dev
$ export REGION=EU
$ yarn workspace @ovh-ux/manager-public-cloud run start:dev

Go to <http://localhost:9000>

How to build the application?

sh
$ yarn run build -p @ovh-ux/manager-public-cloud
$ yarn run build -p @ovh-ux/manager-public-cloud

Telecom

Telecom screenshot

How to start the application?

sh
$ yarn workspace @ovh-ux/manager-telecom run start:dev
$ yarn workspace @ovh-ux/manager-telecom run start:dev

Go to <http://localhost:9000>

How to build the application?

sh
$ yarn run build -p @ovh-ux/manager-telecom
$ yarn run build -p @ovh-ux/manager-telecom

All applications