Nuxeo Web UI is a standard base web application for Nuxeo Platform. It is highly customizable and scalable, developed with Polymer and leveraging nuxeo-elements, our library of custom elements.
npm install
Note: This version of Nuxeo Web UI requires node version >=10.23.0.
For convenience you should create an .env
file to set default environment variables:
cp .env.sample .env
Variable | Used by | Description | Default |
---|---|---|---|
NUXEO_PACKAGES | Webpack, Docker (Nuxeo) | List of packages to enable for Web UI and Nuxeo | |
NUXEO_URL | Webpack | URL used to connect to Nuxeo server from Web UI | /nuxeo |
NUXEO_HOST | Webpack | Nuxeo host address to proxy calls from the dev server | localhost:8080 |
NUXEO_WEB_UI_VERSION | Docker compose | Version of Web UI image to build /start | |
NUXEO_VERSION | Docker compose | Version of Nuxeo server to launch |
npm run start
This makes the Web UI available on http://0.0.0.0:5000/ to locally test. A nuxeo platform is expected to run on http://0.0.0.0:8080/ with the following cors-config.xml
:
<component name="org.nuxeo.corsi.demo">
<extension target="org.nuxeo.ecm.platform.web.common.requestcontroller.service.RequestControllerService" point="corsConfig">
<corsConfig name="foobar" supportedMethods="GET,POST,HEAD,OPTIONS,DELETE,PUT"
exposedHeaders="Accept-Ranges,Content-Range,Content-Encoding,Content-Length,Content-Disposition">
<pattern>/nuxeo/.*</pattern>
</corsConfig>
</extension>
</component>
The following commands can be run in order to run tests against Web UI.
npm run test
npm run ftest
npm run build
Build and optimize the current project, ready for deployment. This includes linting as well as vulcanization, image, script, stylesheet and HTML optimization and minification.
After building the project with npm run build
you can try a Docker compose based deployment with:
docker-compose up --build
This builds the nuxeo-web-ui
Docker image and starts the Docker compose cluster.
Web UI will then be available at http://localhost:8080/nuxeo/ui
mvn clean install
This will build the plugin/web-ui/marketplace/target/nuxeo-web-ui-marketplace-${project.version}.zip
Web UI marketplace to be deployed in a nuxeo server.
mvn clean install -Pftest
This also builds the marketplace running the functionnal tests.
(C) Copyright Nuxeo Corp. (http://nuxeo.com/)
All images, icons, fonts, and videos contained in this folder are copyrighted by Nuxeo, all rights reserved.
Nuxeo dramatically improves how content-based applications are built, managed and deployed, making customers more agile, innovative and successful. Nuxeo provides a next generation, enterprise ready platform for building traditional and cutting-edge content oriented applications. Combining a powerful application development environment with SaaS-based tools and a modular architecture, the Nuxeo Platform and Products provide clear business value to some of the most recognizable brands including Verizon, Electronic Arts, Sharp, FICO, the U.S. Navy, and Boeing. Nuxeo is headquartered in New York and Paris. More information is available at www.nuxeo.com.