src/p4l/config.py.tmpl
changeset 153 50f01260eef4
parent 145 7c6fe1dab213
child 161 216b3f9582aa
equal deleted inserted replaced
152:ab9832ca5ca6 153:50f01260eef4
   164 
   164 
   165 # url of the sesame repository containing all the rdf referentials
   165 # url of the sesame repository containing all the rdf referentials
   166 SPARQL_QUERY_ENDPOINT = "http://localhost:8080/openrdf-sesame/repositories/plan4learning"
   166 SPARQL_QUERY_ENDPOINT = "http://localhost:8080/openrdf-sesame/repositories/plan4learning"
   167 
   167 
   168 # cf http://docs.python.org/2/library/subprocess.html#popen-constructor
   168 # cf http://docs.python.org/2/library/subprocess.html#popen-constructor
   169 ADMIN_COMMAND_SCRIPT = {}
   169 ADMIN_SCRIPT = {
       
   170     'args' : [ sys.executable, "manage.py", "dump_record", "--newline", "-j", "/tmp/script_dump.rdf.bz2"],
       
   171     'cwd' : "/Users/ymh/dev/workspace/plan4learning/src",
       
   172     'env' : {'PYTHONPATH': '/Users/ymh/dev/venvs/p4l/lib/python2.7/site-packages'}
       
   173 }
       
   174