From 3b550b77143ad5447df18fb2321df55eb5241063 Mon Sep 17 00:00:00 2001 From: Shir Bar Lev Date: Thu, 10 Sep 2020 12:21:59 +0300 Subject: [PATCH] Updated README testing instructions. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 17cfaffc..f810928f 100644 --- a/README.md +++ b/README.md @@ -129,12 +129,14 @@ Once you've completed the setup for whichever approach you've chosen, run the fo ``` dropdb test-capstone && createdb test-capstone +psql test-capstone < capstone_db.sql python test_app.py ``` Or, if using MacOS: ``` dropdb test-capstone && createdb test-capstone +psql test-capstone < capstone_db.sql python3 test_app.py ```