@tschuett , I’m setting up arc (and I’m facing issues, as this is more complicated than simple git😅)
I’m stuck at this step (in arc quick config guide)
$ cd yourproject/
yourproject/ $ $EDITOR .arcconfig
yourproject/ $ cat .arcconfig
{
"phabricator.uri" : "https://phabricator.example.com/"
}
Set phabricator.uri to the URI for your Phabricator install (where arc should send changes to).
This is the .arcconfig of the clone of my fork of llvm-project (on my local ubuntu machine) :-
{
"phabricator.uri" : "https://reviews.llvm.org/",
"repository.callsign" : "G",
"conduit_uri" : "https://reviews.llvm.org/",
"base": "git:HEAD^",
"arc.land.onto.default": "main",
"arc.land.onto": ["main"]
}
What should I change the URI to?
And finally, I get this error
arc install-certificate ─╯
CONFIGURATION ERROR
You need to install the cURL PHP extension, maybe with 'apt-get install php5-curl' or 'yum install php53-curl' or something similar.
But both apt and apt-get don’t have php5-curl
sudo apt install php5-curl ─╯
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package php5-curl is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'php5-curl' has no installation candidate
(I had already install PHP previously, using sudo apt install php
Sorry for the complicated message, but I’m really lost!