Setting Plone for training

Getting this Error while setting up Plone backend following 5. Installation – Mastering Plone 6 development — Plone Training 2023 documentation after running make build command

mxdev.vcs.git.GitError: git cloning of 'ploneconf.site' failed.
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

There have been errors, see messages above.
make: *** [Makefile:37: build] Error 1

Help me to Resolve the Error and to Continue with training

You need to set up SSH keys so that you can connect to github using SSH: Connecting to GitHub with SSH - GitHub Docs

1 Like

Hi!

After the command

git clone https://github.com/collective/training_buildout.git backend

edit mx.ini and change:

url=git@github.com:collective/ploneconf.site.git

to

url=https://github.com/collective/ploneconf.site.git

No need for ssh keys but you can setup one if you wish.

This is the modification: Update mx.ini by yurj · Pull Request #28 · collective/training_buildout · GitHub

3 Likes

@ksuess fixed it, now it should work OOTB.

Already merged your PR. Thank you, @yurj !

3 Likes