From 9800d371b760bc1fe45c7dfa0412750070d383a0 Mon Sep 17 00:00:00 2001 From: Phillip Smith Date: Fri, 19 Oct 2018 17:09:26 +1100 Subject: [PATCH] update README based on test of following installation instructions --- README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 722249a..ec845d8 100644 --- a/README.md +++ b/README.md @@ -36,12 +36,21 @@ PodNounce runs on any basic Linux server with common infrastructure: 1. Download a release tarball. 2. Extract to your document root (eg, `/var/www/html/`) - 3. Create a database and populate with the schema: + 3. Create server-writable directorie. For example under apache on CentOS: ``` - createdb podnounce + cd /var/www/html/podnounce + mkdir tmp uploads + chown apache tmp uploads + ``` + 4. Create a database and populate with the schema: + ``` + createuser podnounce + createdb -O podnounce podnounce psql podnounce < postgresql-schema.sql ``` - 4. Open your web browser and point it to your web server. The installation process should automatically start. + 5. Create a configuration file for your database connection: + `cp podnounce.conf.DIST podnounce.conf` then edit `podnounce.conf` + 6. Open your web browser and point it to your web server. The installation process should automatically start. ## Built With