Julien Fontanet ccdf28767a fix(build): various issues
- missing assets with npm run build
- some files had source maps even though it did not make sense
2016-06-24 11:05:14 +02:00
2015-06-11 08:54:58 +02:00
2015-12-03 18:22:13 +01:00
2016-03-24 15:54:08 +01:00
2016-06-24 11:05:14 +02:00
2015-04-10 12:06:46 +02:00
2016-06-02 10:27:47 +02:00

Xen Orchestra Web Build Status

XO-Web is part of Xen Orchestra, a web interface for XenServer or XAPI enabled hosts.

It is a web client for XO-Server.


Installation

XOA or manual install procedure is available here

Compilation

Production build:

$ npm run build

Development build:

$ npm run dev

Environment

NODE_ENV

Set to production it disables many checks which result in increased performance.

XOA_PLAN

  • 1: Free
  • 2: Starter
  • 3: Enterprise
  • 4: Premium
  • 5: Sources
if (process.env.XOA_PLAN < 5) {
  console.log('included only in XOA')
}

if (process.env.XOA_PLAN > 3) {
  console.log('included only in Premium and Sources')
}

How to report a bug?

If you are certain the bug is exclusively related to XO-Web, you may use the bugtracker of this repository.

Otherwise, please consider using the bugtracker of the general repository.

Process for new release

# Switch to the master branch.
git checkout master

# Fetches latest changes.
git pull --ff-only

# Merge changes of the next-release branch.
git merge next-release

# Increment the version (patch, minor or major).
npm version minor

# Go back to the next-release branch.
git checkout next-release

# Fetches the last changes (the merge and version bump) from master to
# next-release.
git merge --ff-only master

# Push the changes on git.
git push --follow-tags origin master next-release

# Publish this release to npm.
npm publish

License

AGPL3 © Vates SAS

Description
The global orchestration solution to manage and backup XCP-ng and XenServer.
Readme 96 MiB
Languages
JavaScript 90.9%
Vue 5.2%
TypeScript 2.6%
SCSS 0.5%
Smarty 0.3%
Other 0.3%