README.rst 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. LAKEsuperior
  2. ============
  3. |build status| |docs|
  4. LAKEsuperior is an alternative `Fedora
  5. Repository <http://fedorarepository.org>`__ implementation.
  6. Documentation
  7. -------------
  8. The full documentation is maintained in `Read The Docs
  9. <http://lakesuperior.readthedocs.io/>`__. Please refer to that for more info.
  10. Installation
  11. ------------
  12. The following instructions are aimed at a manual install using this git
  13. repository. For a hands-off install using Docker, see
  14. `the setup documentation
  15. <http://lakesuperior.readthedocs.io/en/latest/setup.html>`__.
  16. Dependencies
  17. ~~~~~~~~~~~~
  18. 1. Python 3.5 or greater.
  19. 2. A message broker supporting the STOMP protocol. For testing and
  20. evaluation purposes, `CoilMQ <https://github.com/hozn/coilmq>`__ is
  21. included with the dependencies and should be automatically installed.
  22. Installation steps
  23. ~~~~~~~~~~~~~~~~~~
  24. 1. Create a virtualenv in a project folder:
  25. ``virtualenv -p <python 3.5+ exec path> <virtualenv folder>``
  26. 2. Activate the virtualenv: ``source <path_to_virtualenv>/bin/activate``
  27. 3. Clone this repo:
  28. ``git clone https://github.com/scossu/lakesuperior.git``
  29. 4. ``cd`` into repo folder
  30. 5. Install dependencies: ``pip install -r requirements.txt``
  31. 6. Start your STOMP broker, e.g.: ``coilmq &``. If you have another
  32. queue manager listening to port 61613 you can either configure a
  33. different port on the application configuration, or use the existing
  34. message queue.
  35. 7. Run ``./lsup-admin bootstrap`` to initialize the binary and graph
  36. stores
  37. 8. Run ``./fcrepo``.
  38. Contributing
  39. ------------
  40. This has been so far a single person’s off-hours project (with much
  41. input from several sides). In order to turn into anything close to a
  42. Beta release and eventually to a production-ready implementation, it
  43. needs some community love.
  44. Contributions are welcome in all forms, including ideas, issue reports,
  45. or even just spinning up the software and providing some feedback.
  46. LAKEsuperior is meant to live as a community project.
  47. See `Contributing Guidelines
  48. <http://lakesuperior.readthedocs.io/en/latest/contributing.html>`__
  49. for further details on how to fork, improve, document and test the project.
  50. .. |build status| image:: http://img.shields.io/travis/scossu/lakesuperior/master.svg?style=flat
  51. :alt: Build Status
  52. :target: https://travis-ci.org/username/repo
  53. .. |docs| image:: https://readthedocs.org/projects/lakesuperior/badge/
  54. :alt: Documentation Status
  55. :scale: 100%
  56. :target: https://lakesuperior.readthedocs.io/en/latest/?badge=latest