bootstrap.py 881 B

123456789101112131415161718192021222324252627282930313233
  1. #!/usr/bin/env python
  2. import os
  3. import sys
  4. sys.path.append('.')
  5. import lakesuperior.env_setup
  6. from lakesuperior.env import env
  7. from lakesuperior.store.ldp_rs.lmdb_store import TxnManager
  8. from lakesuperior.model.ldpr import Ldpr
  9. __doc__ = '''
  10. This script will parse configuration files and initialize a filesystem and
  11. triplestore with an empty FCREPO repository.
  12. It is used in test suites and on a first run.
  13. Additional scaffolding files may be parsed to create initial contents.
  14. '''
  15. sys.stdout.write(
  16. 'This operation will WIPE ALL YOUR DATA. Are you sure? '
  17. '(Please type `yes` to continue) > ')
  18. choice = input().lower()
  19. if choice != 'yes':
  20. print('Aborting.')
  21. sys.exit()
  22. with TxnManager(env.app_globals.rdf_store, write=True) as txn:
  23. env.app_globals.rdfly.bootstrap()
  24. env.app_globals.rdfly.store.close()
  25. env.app_globals.nonrdfly.bootstrap()