Browse Source

More informative messages in bootstrap script.

Stefano Cossu 7 years ago
parent
commit
c845d8cad0
1 changed files with 6 additions and 0 deletions
  1. 6 0
      util/bootstrap.py

+ 6 - 0
util/bootstrap.py

@@ -31,7 +31,12 @@ def bootstrap_db(app):
             update_ep=dbconf['webroot'] + dbconf['update_ep'],
             update_ep=dbconf['webroot'] + dbconf['update_ep'],
             autocommit=True)
             autocommit=True)
 
 
+    print('Cleaning up graph store: {}'.format(dbconf['webroot']))
+    for g in db.ds.graphs():
+        db.ds.remove_graph(g)
+
     # @TODO Make configurable.
     # @TODO Make configurable.
+    print('Populating graph store with base dataset.')
     db.ds.default_context.parse(source='data/bootstrap/simple_layout.nq',
     db.ds.default_context.parse(source='data/bootstrap/simple_layout.nq',
             format='nquads')
             format='nquads')
 
 
@@ -48,6 +53,7 @@ def bootstrap_binary_store(app):
         shutil.rmtree(root_path)
         shutil.rmtree(root_path)
     except FileNotFoundError:
     except FileNotFoundError:
         pass
         pass
+    print('Recreating binary store path: {}'.format(root_path))
     os.makedirs(root_path + '/tmp')
     os.makedirs(root_path + '/tmp')