List of commits:
Subject Hash Author Date (UTC)
Improved installation (checksum for postgres, useless SELinux booleans 4d9dcd67da247000a19a2f81aebd81f265bfe293 Catalin(ux) M. BOIE 2016-04-06 16:14:25
Add RLUG to history c84c2eaab9c1eb7e6898ef14f12fd8701c6fc285 Catalin(ux) M. BOIE 2016-04-06 16:13:32
Added unit test for e-mail confirmation 8a835c3ffa6f27c208fef6b4525f9aa571c603f6 Catalin(ux) M. BOIE 2016-03-27 11:41:35
Avoid caching in docker c8bc0ff648b60aa159c2a83d8ab1db3c574f19c3 Catalin(ux) M. BOIE 2016-03-14 16:32:25
Do not allow random input as reference fe5d01344b9131edeb2812f72549bf74d8242653 Catalin(ux) M. BOIE 2016-03-14 16:31:59
Bump version to 0.50 485f0f8bae787bfbd7c52c9b934af977d8a2b871 Catalin(ux) M. BOIE 2016-03-11 23:32:34
Fixed bug add menu 47d48b6bbf669bd51d6876521fa288d217dda5d2 Catalin(ux) M. BOIE 2016-03-11 23:32:02
docker small fixes 1e68d0bbf8e16365068636a4e813c8ae0db2be5c Catalin(ux) M. BOIE 2016-03-11 23:31:34
Corrected a problem in spec file 8d28fc4e9d66d9a07d1148d893176a99533f8796 Catalin(ux) M. BOIE 2016-03-11 17:33:18
Bump version to v0.49 1481eafa69e1b2f2e2922a7b26acc3dc9a56f1a3 Catalin(ux) M. BOIE 2016-03-11 17:26:13
Just some comments 96f8542619d772c29b9bb07e4a066b7302d6f35c Catalin(ux) M. BOIE 2016-03-11 17:25:29
TODO clean-ups 3e34a304a204792b1a1a0b403c88e3164441066c Catalin(ux) M. BOIE 2016-03-09 17:27:10
Document web hooks and anonymous push 449e2d788ec06a49cc93f7d058df51ec351b9244 Catalin(ux) M. BOIE 2016-03-09 17:26:29
Do not log password in logs 4e183a15605f4b338863ea97192e46e0cf62cfe8 Catalin(ux) M. BOIE 2016-03-09 17:25:52
Do not continue to show objects if repo returned an error cd2a6a06d7867bb5da19108c6ab575e741b8b08e Catalin(ux) M. BOIE 2016-03-09 03:50:28
Make more clearer the events error message c76dd790a73e04318f0fc58b22d7701858e7dadf Catalin(ux) M. BOIE 2016-03-08 20:57:37
Accept 301 as a valid HTTP code 368f187c74e54052dbeeddfe9b5a533b155a62c2 Catalin(ux) M. BOIE 2016-03-08 20:57:01
We need to copy also the tags in the namespace to not get errors when pushing tags a6fa7c067b29f2d3ae400e6cb9117d17225ce047 Catalin(ux) M. BOIE 2016-03-06 21:21:07
Clean some items on TODO regarding mr 2383950909474e510897f37e46c2cf7cc762ec89 Catalin(ux) M. BOIE 2016-03-06 21:20:37
Lots of fixes for pull requests 54c410d144ae9ebdcc17ad8d11865a378e89f576 Catalin(ux) M. BOIE 2016-03-06 20:07:06
Commit 4d9dcd67da247000a19a2f81aebd81f265bfe293 - Improved installation (checksum for postgres, useless SELinux booleans
Author: Catalin(ux) M. BOIE
Author date (UTC): 2016-04-06 16:14
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2016-04-06 16:14
Parent(s): c84c2eaab9c1eb7e6898ef14f12fd8701c6fc285
Signing key:
Tree: 92717b562c5cff6665460f7ce39a147d51fabb04
File Lines added Lines deleted
README 4 9
File README changed (mode: 100644) (index 57dfb7c..5e4d1e3)
25 25 - It is recommended to NOT install rocketgit on a multiuser machine. - It is recommended to NOT install rocketgit on a multiuser machine.
26 26 There are some things that should be fixed first. We are working on it. There are some things that should be fixed first. We are working on it.
27 27
28 . Prepare SELinux
29 # setsebool -P \
30 httpd_can_network_connect_db=on \
31 httpd_can_network_connect=on \
32 httpd_can_sendmail=on
33
34 28 . Edit /etc/rocketgit/config.php . Edit /etc/rocketgit/config.php
35 29 . Edit /etc/httpd/conf.d/rocketgit.conf . Edit /etc/httpd/conf.d/rocketgit.conf
36 30
 
58 52
59 53 . Configure PostgreSQL server . Configure PostgreSQL server
60 54 # systemctl enable postgresql.service # systemctl enable postgresql.service
61 # postgresql-setup initdb (TAKE CARE! YOU MAY DESTROY ALL YOUR DATA!)
55 # postgresql-setup --initdb (TAKE CARE! YOU MAY DESTROY ALL YOUR DATA!)
56 # export PGSETUP_INITDB_OPTIONS="--data-checksums" # recommended
62 57 # systemctl start postgresql.service # systemctl start postgresql.service
63 58
64 59 . Create a PostgreSQL user and database . Create a PostgreSQL user and database
65 60 # su - postgres # su - postgres
66 $ createuser -d -R -S rocketgit
61 $ createuser --createdb --no-createrole --no-superuser rocketgit
67 62 $ createdb -O rocketgit rocketgit $ createdb -O rocketgit rocketgit
68 63
69 64 . Allow access to PostgreSQL and restart: . Allow access to PostgreSQL and restart:
 
73 68 host rocketgit rocketgit 127.0.0.1/32 trust host rocketgit rocketgit 127.0.0.1/32 trust
74 69 host rocketgit rocketgit ::1/128 trust host rocketgit rocketgit ::1/128 trust
75 70
76 systemctl restart postgresql.service
71 systemctl reload postgresql.service
77 72
78 73 Notes: Notes:
79 74 - Check also the config file (/etc/rocketgit/config.php) and set - Check also the config file (/etc/rocketgit/config.php) and set
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/catalinux/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/rocketgit

Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main