diff --git a/README.md b/README.md index f64640b..190607f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Static web page generator for the Hacker Public Radio website. ## Installation * Clone or download this repository -* With SQLite +* Download the database and load into SQLite * Create the sqlite3 database from the hpr.sql MySQL dump file available on hackerpublicradio.org. The default name for the database file is "hpr.db" and should be located in the root of the project directory. The name and @@ -15,15 +15,6 @@ Static web page generator for the Hacker Public Radio website. 2. Run `./utils/update-hpr.sh` * SQLite v3.8.3 or greater is recommended. CTE WITH clauses are used in some template queries. Must convert WITH clauses to sub-queries when using earlier versions of SQLite. -* With MySQL - * Create database hpr_hpr in the MySQL server from HPR dump file. - - ``sudo mysql --host=localhost < hpr.sql`` - * Create a user that will be used by the site-generator. - - Suggested username: hpr-generator - - ``CREATE USER 'hpr-generator'@'localhost' IDENTIFIED BY '';`` - * Limit the user's privileges to EXECUTE and SELECT - - ``GRANT SELECT ON hpr_hpr.* TO 'hpr-generator'@'localhost';`` - - ``GRANT EXECUTE ON `hpr_hpr`.* TO 'hpr-generator'@'localhost';`` * Install the needed Perl modules using preferred method (distribution packages, CPAN, etc.) * Getopt::Long * Pod::Usage