From 989293e28bff042551826572c1e5b943d16bc5ce Mon Sep 17 00:00:00 2001 From: Jeroen Baten Date: Wed, 14 Sep 2022 10:38:09 +0200 Subject: [PATCH] Update HACKING.rst Github changed from Git protocol support to their GH command and https. Changed order of database commands. Changed python-docutils to python3-docutils since this is more supported across recent Ubuntu versions. --- HACKING.rst | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/HACKING.rst b/HACKING.rst index 2ed8646c0..3b81dd809 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -56,7 +56,7 @@ Debian/Ubuntu * Install requirements:: - # apt-get install git-core maven openjdk-8-jdk postgresql postgresql-client python-docutils make gettext cutycapt + # apt-get install git-core maven openjdk-8-jdk postgresql postgresql-client python3-docutils make gettext cutycapt * Set default OpenJDK version (required for Ubuntu 18.04, 20.04 and newer):: @@ -68,15 +68,13 @@ Debian/Ubuntu * Use SQL sentences:: - CREATE DATABASE libreplandev; - CREATE DATABASE libreplandevtest; CREATE USER libreplan WITH PASSWORD 'libreplan'; - GRANT ALL PRIVILEGES ON DATABASE libreplandev TO libreplan; - GRANT ALL PRIVILEGES ON DATABASE libreplandevtest TO libreplan; + CREATE DATABASE libreplandev owner libreplan; + CREATE DATABASE libreplandevtest owner libreplan; * Download source code:: - $ git clone git://github.com/LibrePlan/libreplan.git + $ git clone https://github.com/LibrePlan/libreplan.git * Compile project::