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.
This commit is contained in:
Jeroen Baten 2022-09-14 10:38:09 +02:00 committed by GitHub
parent 00fcce19b6
commit 989293e28b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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::