Skip to content
This repository has been archived by the owner on Nov 20, 2018. It is now read-only.

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
wegrata committed Jan 12, 2012
1 parent 4a82044 commit b900dc5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Readme.md
Expand Up @@ -15,24 +15,43 @@ Run `pip install -U -r requirements.txt`
All configuration is done in the src/celeryconfig.py file. For information of configuring Celery please see their [document](http://celery.readthedocs.org/en/latest/index.html). For lr-data configuration modify

`config = {

"lrUrl": "http://lrdev02.learningregistry.org/harvest/listrecords",

"mongodb":{

"database":"lr",

"collection":"envelope",

"host": "localhost",

"port": 27017,

},

"couchdb":{

"dbUrl":"http://localhost:5984/lr-data"

},

"insertTask":"tasks.save.insertDocumentMongo",

"validationTask":"tasks.validate.emptyValidate",

"redis":{

"host":"localhost",

"port":6379,

"db":0

}

}`

set `insertTask` to be the celery task you wish to use to save the data and modify `validationTask` to be your validation task
#Startup
To start run `celryd -B` from the source directory. To run as a deamon follow these [instructions](http://ask.github.com/celery/cookbook/daemonizing.html)

0 comments on commit b900dc5

Please sign in to comment.