# LAKEsuperior
LAKEsuperior is an experimental [Fedora Repository](http://fedorarepository.org)
implementation.
## Basic concepts
LAKEsuperior aims at being an uncomplicated, efficient Fedora 4 implementation.
Key features:
- Drop-in replacement for Fedora4 (with some caveats: see
[Delta document](doc/notes/fcrepo4_deltas.md))—currently being tested with
Hyrax 2
- Stores metadata in a graph store, binaries in filesystem
- Simple search and SPARQL Query API via back-end triplestore (planned)
- No performance issues storing many resources under the same container; no
[kudzu](https://www.nature.org/ourinitiatives/urgentissues/land-conservation/forests/kudzu.xml)
pairtree segmentation [1](#f1)
- Mitigates "many member" issue: constant performance writing to a resource with
many children or members; option to omit children in retrieval
- Flexible back-end layouts: options to organize information in back end
- Migration tool (planned)
Implementation of the official [Fedora API specs](https://fedora.info/spec/)
(Fedora 5.x and beyond) is not
foreseen in the short term, however it would be a natural evolution of this
project if it gains support.
Please make sure you read the [Delta document](doc/notes/fcrepo4_deltas.md) for
divergences with the official Fedora4 implementation.
The application code strives to maintain a linear, intuitive code structure to
foster collaboration. *TODO link to tech overview and approach*
## Installation
### Dependencies
1. A triplestore.
[Fuseki](https://jena.apache.org/documentation/fuseki2/#download-fuseki)
is the benchmark used so far in development. Other implementations are
possible as long as they support RDF 1.1 and SPARQL over HTTP
1. A message broker supporting the STOMP protocol. If you have a separate
instance of official Fedora listening to port 61613, that will do the job
1. Python 3.5 or greater
### Installation steps
1. Install dependencies as indicated above
1. Create a virtualenv in a project folder:
`virtualenv -p `
1. Initialize the virtualenv: `source /bin/activate`
1. Clone this repo
1. `cd` into repo folder
1. Install dependencies: `pip install -r requirements.txt`
1. Copy the `etc.skeleton` folder to a separate location
1. Set the configuration folder location in the environment:
`export FCREPO_CONFIG_DIR=` (alternatively you can
add this line to your virtualenv `activate` script)
1. Configure the application
1. Start your triplestore and STOMP broker
1. Run `util/bootstrap.py` to initialize the binary and graph stores
1. Run `./fcrepo` for a multi-threaded server or `flask run` for a
single-threaded development server
### Production deployment
If you like fried repositories for lunch, deploy before 11AM.
## Status and development
LAKEsuperior is in **alpha** status. Please see the [TODO](doc/notes/TODO) list
for a rudimentary road map and status.
## Further documentation
The design documents are in the [doc/pdf](doc/pdf) folder. *@TODO needs update*
1 However if your client splits pairtrees upstream, such as
Hyrax does, that obviously needs to change to get rid of the path
segments. [↩](#a1)