bootstrap.py 441 B

12345678910111213141516
  1. #!/usr/bin/env python
  2. from lakesuperior.config_parser import config
  3. # This script will parse configuration files and initialize a filesystem and
  4. # triplestore with an empty FCREPO repository.
  5. #
  6. # Additional, scaffolding files may be parsed to create initial contents.
  7. # @TODO
  8. # Initialize temporary folders.
  9. tmp_path = config['application']['store']['ldp_nr']['path'] + '/tmp'
  10. if not os.path.exists(tmp_path):
  11. os.makedirs(tmp_path)