Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • The DSpace Frontend consists of a User Interface built on Angular.io.  It cannot be run alone, as it requires a valid DSpace Backend to function.  The frontend provides all user-facing functionality
  • The DSpace Backend consists of a Server API ("server" webapp), built on Spring Boot.  It can be run standalone, however it has no user interface.  The backend provides all machine-based interfaces, including the REST API, OAI-PMH, SWORD (v1 and v2) and RDF.

We recommend installing the Backend first, as the Frontend requires a valid Backend to run properly.

Installing the Backend (Server API)

Note
titleWork in progress (Feedback welcome)

These installation instructions are a work-in-progress and based heavily on the DSpace 6.x installation instructions.  Feedback or improvements are welcome.

Installing the Frontend (User Interface)

...

Code Block
# clone the repo
git clone https://github.com/DSpace/dspace-angular.git

# change directory to our repo
cd dspace-angular

# Checkout the "preview" release branch
git checkout preview

# install the local dependencies
yarn install

# start the server
yarn start

...