From 713c2e63941bf67e38f6c3b407b17ab8f545321b Mon Sep 17 00:00:00 2001 From: Paul Jewell Date: Mon, 27 Jan 2025 10:56:22 +0000 Subject: [PATCH] I250 - remove mySQL instructions from README.md --- README.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) 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