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:
parent
00fcce19b6
commit
989293e28b
1 changed files with 4 additions and 6 deletions
10
HACKING.rst
10
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::
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue