From ef9615aebb8a7b504c3b5cd2610e3c8f5bb4de58 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 15 Dec 2015 13:38:57 +0200 Subject: Various cleanups and improvements, INSTALL-DEV instructions --- INSTALL-DEV | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 INSTALL-DEV (limited to 'INSTALL-DEV') diff --git a/INSTALL-DEV b/INSTALL-DEV new file mode 100644 index 0000000..eb5676b --- /dev/null +++ b/INSTALL-DEV @@ -0,0 +1,71 @@ +1. Create PostgreSQL User and Database + +$ sudo su postgres +$ psql + +Replace with your login and "www-data" with the user under which +apache2 is running. + +CREATE DATABASE brep; +CREATE USER ; +GRANT ALL PRIVILEGES ON DATABASE brep TO ; +CREATE USER "www-data" INHERIT IN ROLE ; + +Make sure the logins work: + +$ psql -d brep +$ sudo sudo -u www-data psql -d brep + +To troubleshooting, see logs: + +$ sudo tail -f /var/log/postgresql/*.log + + +2. Create Database Schema and Load the Data + +All the commands are executed from brep project root. + +$ psql --quiet -d brep -f brep/package.sql +$ loader/brep-loader tests/loader/r.conf # Or some other loader config. + +To verify: + +$ psql -d brep -c 'SELECT name, summary FROM repository' + + +3. Setup Apache2 Module + +Here we assume apache2 is installed and you have an appropriate VirtualServer +ready (the one for the default site is usually a good candidate). Open the +corresponding apache2 .conf file and add the following inside VirtualServer, +replacing and with the actual absolute paths +(if you built brep in the source tree, then the two would be the same). + + # brep module configuration. + # + LoadModule brep_module /brep/mod_brep.so + SetHandler brep + + brep-conf /etc/brep.conf + + # brep static content (CSS files). + # + # Note: trailing slashes are important! + # + Alias /pkg/@/ /www/ + + /www"> + Require all granted + + +You may want to replace /etc/brep.conf with a custom +configuration file if you often need to modify it. + +Restart apache2 (use the second version for systemd): + +$ sudo /etc/init.d/apache2 restart +$ sudo systemctl restart apache2 + +To verify, visit the repository root. To troubleshooting, see logs: + +$ sudo tail -f /var/log/apache2/error.log -- cgit v1.1