From 37bed1522de8458716e654f7ee7b3afd9e4a4422 Mon Sep 17 00:00:00 2001 From: fawce Date: Mon, 9 Jan 2012 15:34:50 -0500 Subject: [PATCH] formatting --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 3dd9db71..ba04e5de 100644 --- a/README.md +++ b/README.md @@ -2,33 +2,33 @@ ##Development Quickstart Navigate to your mongodb installation and start your db server: -~~~ +``` ./bin/mongodb -~~~ +``` Install the necessary python libraries: -~~~ +``` easy_install tornado pymongo -~~~ +``` Create a development database with sample data, will create one qbt user: -~~~ +``` python qbt_data_bootstrap.py --user_email=... --password=... -~~~ +``` To run the qbt against a local mongodb instance, navigate to the source dir and run -~~~ +``` python qbt_server.py --mongodb_dbname=qbt -~~~ +``` To see all the available options: -~~~ +``` python qbt_server.py --help -~~~ +``` or -~~~ +``` python qbt_data_bootstrap.py --help -~~~ +``` qbt uses tornado to accept synchronous requests for backtesting sessions.