Skip to content

Working repository for the Umbraco Backoffice project

Notifications You must be signed in to change notification settings

umbraco/Umbraco.CMS.Backoffice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

73c6b4b · Feb 29, 2024
Feb 22, 2024
Feb 23, 2024
Feb 28, 2024
Feb 7, 2024
Feb 23, 2024
Feb 1, 2024
Feb 23, 2024
Feb 28, 2024
Jan 30, 2024
Dec 16, 2023
Feb 29, 2024
Feb 28, 2024
Feb 7, 2024
Jul 1, 2022
Apr 24, 2023
Nov 14, 2022
Nov 24, 2022
Aug 8, 2022
Nov 23, 2023
Feb 23, 2024
Jan 5, 2024
Dec 1, 2023
Nov 3, 2023
Jul 18, 2023
Jul 1, 2022
Feb 22, 2024
Jan 24, 2024
Jan 24, 2024
Aug 11, 2023
Nov 24, 2023
Feb 23, 2024
Feb 29, 2024
Aug 16, 2022
May 18, 2022
Feb 29, 2024
Nov 24, 2022
May 26, 2023
Feb 14, 2024
Feb 15, 2024
Dec 8, 2023

Umbraco.CMS.Backoffice (Bellissima)

This is the working repository of the upcoming new Backoffice to Umbraco CMS.

Storybook

Installation instructions

  1. Run npm install
  2. Run npm run dev to launch Vite in dev mode

Environment variables

The development environment supports .env files, so in order to set your own make a copy of .env and name it .env.local and set the variables you need.

As an example to show the installer instead of the login screen, set the following in the .env.local file to indicate that Umbraco has not been installed:

VITE_UMBRACO_INSTALL_STATUS=must-install

Environments

Development

The development environment is the default environment and is used when running npm run dev. All API calls are mocked and the Umbraco backoffice is served from the src folder.

Run against a local Umbraco instance

Note Make sure you have followed the Authentication guide before continuing.

If you have a local Umbraco instance running, you can use the development environment to run against it by overriding the API URL and bypassing the mock-service-worker in the frontend client.

Create a .env.local file and set the following variables:

VITE_UMBRACO_API_URL=https://localhost:44339 # This will be the URL to your Umbraco instance
VITE_UMBRACO_USE_MSW=off # Indicate that you want all API calls to bypass MSW (mock-service-worker)

Storybook

Storybook is also being built and deployed automatically on the Main branch, including a preview URL on each pull request. See it in action on this Azure Static Web App.

Contributing

We accept contributions to this project. However be aware that we are mainly working on a private backlog, so not everyone will be immediately obvious. If you want to get started on contributing, please read the contribute space where you will be able to find the guidelines on how to contribute as well as a list of good first issues.

Documentation

The documentation can be found on Umbraco Docs. The documentation is a work in progress.