{"id":19492796,"url":"https://github.com/nuxeo/nuxeo-web-ui","last_synced_at":"2026-03-16T08:07:20.882Z","repository":{"id":37469533,"uuid":"46934532","full_name":"nuxeo/nuxeo-web-ui","owner":"nuxeo","description":"New Nuxeo Web UI","archived":false,"fork":false,"pushed_at":"2024-10-30T05:23:43.000Z","size":139684,"stargazers_count":59,"open_issues_count":18,"forks_count":61,"subscribers_count":49,"default_branch":"maintenance-3.1.x","last_synced_at":"2024-10-30T06:26:56.875Z","etag":null,"topics":["nuxeo","polymer","web-components"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nuxeo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-11-26T15:33:53.000Z","updated_at":"2024-10-29T05:39:41.000Z","dependencies_parsed_at":"2024-01-29T08:00:23.658Z","dependency_job_id":"c8135a49-48d5-4048-a326-97999151ff8e","html_url":"https://github.com/nuxeo/nuxeo-web-ui","commit_stats":null,"previous_names":[],"tags_count":912,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuxeo%2Fnuxeo-web-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuxeo%2Fnuxeo-web-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuxeo%2Fnuxeo-web-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuxeo%2Fnuxeo-web-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nuxeo","download_url":"https://codeload.github.com/nuxeo/nuxeo-web-ui/tar.gz/refs/heads/maintenance-3.1.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247276189,"owners_count":20912288,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["nuxeo","polymer","web-components"],"created_at":"2024-11-10T21:23:03.632Z","updated_at":"2026-02-16T09:06:59.845Z","avatar_url":"https://github.com/nuxeo.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://jenkins.webui.dev.nuxeo.com/buildStatus/icon?job=nuxeo%2Fnuxeo-web-ui%2Fmaster)](https://jenkins.webui.dev.nuxeo.com/job/nuxeo/job/nuxeo-web-ui/job/master/)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/5d8cd2a3c56745ecaae7e7f92a683ea7)](https://www.codacy.com/app/Nuxeo/nuxeo-web-ui)\n\n## Nuxeo Web UI\n\n### About\nNuxeo Web UI is a standard base web application for Nuxeo Platform. It is highly customizable and scalable, developed with [Polymer](https://polymer-library.polymer-project.org/) and leveraging [nuxeo-elements](https://github.com/nuxeo/nuxeo-elements), our library of custom elements.\n\n### Install dependencies\n\n```sh\nnpm install\n```\n**Note: This version of Nuxeo Web UI requires node version \u003e=14.0.0 \u003c15.0.0.**\n\n### Development workflow\n\n#### Configure\n\nFor convenience you should create an `.env` file to set default environment variables:\n\n```sh\ncp .env.sample .env\n```\n\n#### Environment variables\n\nVariable | Used by | Description | Default\n--- | --- | --- | ---\nNUXEO_PACKAGES | Webpack, Docker (Nuxeo) | List of packages to enable for Web UI and Nuxeo\nNUXEO_URL | Webpack | URL used to connect to Nuxeo server from Web UI | /nuxeo\nNUXEO_HOST | Webpack | Nuxeo host address to proxy calls from the dev server | localhost:8080 \nNUXEO_WEB_UI_VERSION | Docker compose | Version of Web UI image to build /start\nNUXEO_VERSION | Docker compose | Version of Nuxeo server to launch\n\n#### Serve / watch\n\n```sh\nnpm run start\n```\n\nThis 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/`. To configure CORS, we need to add the following line to `nuxeo.conf` file in our Nuxeo Server:\n\n```\n  nuxeo.cors.urls=*\n```\n\n#### Run tests\nThe following commands can be run in order to run tests against Web UI.\n\n##### Unit Tests\n\n```sh\nnpm run test\n```\n##### Functional Tests\n\n```sh\nnpm run ftest\n```\n\n#### Build \u0026 Vulcanize\n\n```sh\nnpm run build\n```\n\nBuild and optimize the current project, ready for deployment. This includes linting as well as vulcanization, image, script, stylesheet and HTML optimization and minification.\n\n#### Run with Docker Compose\n\nAfter building the project with `npm run build` you can try a Docker compose based deployment with:\n\n```sh\ndocker-compose up --build\n```\n\nThis builds the `nuxeo-web-ui` Docker image and starts the Docker compose cluster.\n\nWeb UI will then be available at http://localhost:8080/nuxeo/ui\n\n### Production workflow\n\n#### Marketplace package\n\n```sh\nmvn clean install\n```\n\nThis 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.\n\n```sh\nmvn clean install -Pftest\n```\n\nThis also builds the marketplace running the functionnal tests.\n\n### CI using Github Actions\n\nAt the moment, CI for Nuxeo Web UI is built on top of [Github Actions](https://github.com/features/actions). We currently provide worflow definitions for building and testing Nuxeo Web UI, to setup preview environments for pull requests, and to promote new releases.\n\nAlthough there are no cross-repo support for building and testing Nuxeo Web UI with [nuxeo-elements](https://github.com/nuxeo/nuxeo-elements/tree/maintenance-3.1.x), preview environments are setup with cross-repo support. To this extent, in pull requests annotated with the tag `preview`, the workflow will lookup for a corresponding branch with the same name in `nuxeo-elements` repo, and use it in the preview instance.\n\n## License\n\n[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html) \n\n©2023 Hyland Software, Inc. and its affiliates. All rights reserved. \nAll Hyland product names are registered or unregistered trademarks of Hyland Software, Inc. or its affiliates.\n\nAll images, icons, fonts, and videos contained in this folder are copyrighted by Hyland Software, all rights reserved.\n\n## About Nuxeo\n\nNuxeo 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.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnuxeo%2Fnuxeo-web-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnuxeo%2Fnuxeo-web-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnuxeo%2Fnuxeo-web-ui/lists"}