diff --git a/README.md b/README.md index 96ff57485002053b53dd51cad0d67fcedba098ce..acc6fa5e0898df4f4bbd7b41d9777433e434c934 100644 --- a/README.md +++ b/README.md @@ -99,13 +99,7 @@ To install and configure SQLite, follow these steps below: 1. [Download SQLite](https://www.sqlite.org/download.html) from there homepage and install. 2. Create the database * For Mac/Linux users, use the script _docs/DBScripts/sqlite-create-script.sh_ to create the database. - * For windows users, start a sqlite cli and execute following commands: - ``` - $ .read /path/to/sqlite-world.sql - $ .save world.db - $ .quit - ``` - make sure the `world.db` is either dumped or copied into _docs/DBscripts/_, because it will be used by _deploy.bat_. + * For windows users, run the command(this should in _docs/DBScripts_): `sqlite3 world.db ".read sqlite-world.sql"` The generated SQLite database file will be deployed by `scripts/deploy.sh` or `scripts/deploy.bat` automatically after the project is built.