Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 1.37 KB

README.md

File metadata and controls

58 lines (39 loc) · 1.37 KB

Plone Deployment Training Example Repo

Initial Setup

  • Fork this repo into your Github account
  • git clone [email protected]:MYUSER/training-deploy-project.git
  • Open in your favorite text editor. ie: cd training-deploy-project && code ./
  • Find all occurences of DOCKER_HUB_USER_CHANGE_ME and replace it with your Docker Hub user name

Setup backend

Create a Python virtual environment, install Plone 6.0.0a3 and one addon.

cd backend
make build

Run the Plone Backend instance

make start

In a browser, go to [http://localhost:8080/@@plone-addsite?site_id=Plone&advanced=1](http://localhost:8080/@@plone-addsite?site_id=Plone&advanced=1 and create a new site:

Plone site creation

Stop the process

Setup a new frontend project

On the root of this project

npm init yo @plone/volto

Answer the questions:

Project name (e.g. my-volto-project) frontend
Would you like to add addons? True
Addon name, plus extra loaders, like: volto-addon:loadExtra,loadAnotherExtra volto-slate:asDefault
Would you like to add another addon? false

Edit frontend/package.json and change "@plone/volto": "13.15.1", to "@plone/volto": "14.0.0-node16",

And run cd frontend && yarn

Start it with

yarn start

Running everything with docker

make start-images