Replies: 5 comments 1 reply
-
Thanks for the feedback. I am working on separating the front-end as a separate repo I think what you are suggesting is something like this:
installation of bpmn-server along with bpmn-webgit clone .../bpmn-web
npm install
copy sample.env .env edit .env file npm run setup
npm start To Updategit pull
npm update installation of bpmn-clientcreate a folder or use an existing project git clone .../bpmn-client-sample
copy sample.env .env edit .env file npm install To Updategit pull
npm update |
Beta Was this translation helpful? Give feedback.
-
more or less. If there were a separate repo for webapp, I can make pretty quick work of that kind of change. |
Beta Was this translation helpful? Give feedback.
-
I woulnd't copy bpmn-web into the bpnm-server repo. If you want to do live development against another project there is npm link. If you wanted to work with the web app or quick start it, it should just npm install bpmn-server. |
Beta Was this translation helpful? Give feedback.
-
I agree
…Sent from my iPhone
On Nov 1, 2023, at 4:59 PM, dopry ***@***.***> wrote:
I woulnd't copy bpmn-web into the bpnm-server repo. If you want to do live development against another project there is npm link. If you wanted to work with the web app or quick start it, it should just npm install bpmn-server.
—
Reply to this email directly, view it on GitHub<#126 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AC2XVKCVYUIG5RSJCMCZSQ3YCKZ4FAVCNFSM6AAAAAA6WVNDLWVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM3TINBZHA3DG>.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
docker is now available https://github.com/bpmnServer/docker |
Beta Was this translation helpful? Give feedback.
-
Following the getting started is a little awkward with the whole
npm install bpmn-server
andcp -r node_modules/...
.If the bpmn-server were containerized there would be a dedicated WebApp (I think this may be what is happening in the bpnm-client folder). The WebApp repo could be setup with a docker-compose file to launch mongo and npm-server... making the process to setup a local demo more like...
Beta Was this translation helpful? Give feedback.
All reactions