-
Make sure you have
dockeranddocker composeinstalled and running on your machine:git clone https://github.com/eea/volto-slate-footnote.git cd volto-slate-footnote git checkout -b bugfix-123456 develop make make start -
Wait for
Volto started at 0.0.0.0:3000meesage -
Go to http://localhost:3000
-
Initialize git hooks
yarn prepare
-
Happy hacking!
Before starting make sure your development environment is properly set. See Volto Developer Documentation
-
Make sure you have installed
yo,@plone/generator-voltoandmrs-developernpm install -g yo @plone/generator-volto mrs-developer -
Create new volto app
yo @plone/volto my-volto-project --addon @eeacms/volto-slate-footnote --skip-install cd my-volto-project -
Add the following to
mrs.developer.json:{ "volto-slate-footnote": { "url": "https://github.com/eea/volto-slate-footnote.git", "package": "@eeacms/volto-slate-footnote", "branch": "develop", "path": "src" } } -
Install
make develop yarn -
Start backend
docker run --pull always -it --rm --name plone -p 8080:8080 -e SITE=Plone plone/plone-backend...wait for backend to setup and start -
Ready to handle requests:...you can also check http://localhost:8080/Plone
-
Start frontend
yarn start -
Go to http://localhost:3000
-
Happy hacking!
cd src/addons/volto-slate-footnote/
To run cypress locally, first make sure you don't have any Volto/Plone running on ports 8080 and 3000.
You don't have to be in a clean-volto-project, you can be in any Volto Frontend
project where you added volto-slate-footnote to mrs.developer.json
Go to:
cd src/addons/volto-slate-footnote/Start:
make
make startThis will build and start with Docker a clean Plone backend and Volto Frontend with volto-slate-footnote block installed.
Open Cypress Interface:
make cypress-openOr run it:
make cypress-run