aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index ac2295f..6d44631 100644
--- a/README.md
+++ b/README.md
@@ -11,14 +11,15 @@ Install the necessary packages:
# pip3 install orator click
-First we need to setup an SQLite database:
+Edit the `config.py` to suit your needs. Then initialise the database:
- $ ./cli.py init pyble.db
+ $ orator migrations:run -c config.py # Create schema
+ $ ./cli.py init # Fill with standard data
You're going to need one or several translations. One possibility is to [get them from Bible Hub][biblehubdb] (take the "Text file (zipped, 5.5MB)"). Download and unzip the zipped text file, then run:
$ unzip bibles.zip
- $ ./cli.py load --type=biblehub bibles.txt pyble.db
+ $ ./cli.py load --type=biblehub bibles.txt
$ rm bibles.zip bibles.txt
## To do