Skip to content

Commit

Permalink
update README based on test of following installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
fukawi2 committed Oct 19, 2018
1 parent 4e77964 commit 9800d37
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 9800d37

Please sign in to comment.