forked from eea/volto-widget-theme-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDEVELOP.md.tpl
51 lines (31 loc) · 1.23 KB
/
DEVELOP.md.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# <%= name %>
## Develop
Before starting make sure your development environment is properly set. See [Volto Developer Documentation](https://docs.voltocms.com/getting-started/install/)
1. Make sure you have installed `yo`, `@plone/generator-volto` and `mrs-developer`
npm install -g yo @plone/generator-volto mrs-developer
1. Create new volto app
yo @plone/volto my-volto-project --addon <%= addonName %> --skip-install
cd my-volto-project
1. Add the following to `mrs.developer.json`:
{
"<%= name %>": {
"url": "https://github.com/eea/<%= name %>.git",
"package": "<%= addonName %>",
"branch": "develop",
"path": "src"
}
}
1. Install
yarn develop
yarn
1. Start backend
docker pull plone
docker run -d --name plone -p 8080:8080 -e SITE=Plone -e PROFILES="profile-plone.restapi:blocks" plone
...wait for backend to setup and start - `Ready to handle requests`:
docker logs -f plone
...you can also check http://localhost:8080/Plone
1. Start frontend
yarn start
1. Go to http://localhost:3000
1. Happy hacking!
cd src/addons/<%= name %>/