Page History
...
| Warning | ||
|---|---|---|
| ||
| Please note that DSpace 9.0-rc1 (9.0 first release candidate) is scheduled to be released on Friday, April 4. This early release is only meant to be used for the DSpace 9.0 Testathon |
Overview
DSpace 9 brings new features and major updates to the DSpace platform. See the DSpace 9 Release Notes for more information on this release.
...
- First, you will need to install the necessary prerequisites.
- Git is required. If you do not already have it installed (try running
git versionat your command line), you can install it via https://git-scm.com/downloads (or via your local package manager tools for Linux or Mac OS) - Node.js (v18 or v20 or v22) is required.
- NPM (v8.x or above) is required. Don't worry, this gets installed with Node.js though, so you don't need to do anything extra here.
- NOTE: DSpace 9.0 does not use Yarn. Instead, you will use "npm" for all build commands. Yarn is only used for DSpace 7 and 8.
- Git is required. If you do not already have it installed (try running
Then, download our "dspace-angular" application (which is the DSpace user interface) and run it. All you should need to do is the steps in the "Quick Start" at: https://github.com/DSpace/dspace-angular/#quick-start
Code Block # clone the repo git clone https://github.com/DSpace/dspace-angular.git # change directory to our repo cd dspace-angular # Switch to the main branch (pre-8.0 code) git checkout main # install the local dependencies yarnnpm install # start the server yarnnpm start
- After a few minutes, the user interface will be running on your local machine. Again, it will be accessing the REST API Demo site, so a stable internet connection is required.
- User Interface: http://localhost:4000/
- REST API (remote demo site): https://sandbox.dspace.org/server/
- Admin Login: dspacedemo+admin@gmail.com, Password: dspace
- Submitter Login: dspacedemo+submit@gmail.com, Password: dspace
- Objects/Pages of interest (within the test data):
- Journal Example represents a journal with journal volumes, issues and articles, as detailed in the Configurable Entities Design.
- Publications Example contains publications which contain a combination of plain-text authors and related author entities. It also contains relations to Research Projects and Organizational Units, as detailed in the Configurable Entities design. Navigating to e.g. a Person will reveal their relations to Publications, Research Projects and Organizational Units.
- Submission/Workflow functionality can be tested using one of the collections in this community where the workflow is enabled. You can use the accounts mentioned above to perform the submission and workflow steps. The admin account can perform the submission and all workflow steps as well.
- Once logged in, MyDSpace functionality is found in the user menu (upper right). Submissions can be started from that page, or via the "New → Item" admin menu (if logged in as an Admin)
- One you are done testing, you can stop the locally running DSpace 9 user interface via
Ctrl+C
Install both the User Interface and REST API locally
The DSpace 8 9 installation guide describes manually installing both the frontend (User Interface) and backend (REST API) of DSpace on a local machine. The frontend and backend need not be installed on the same machine.
...
Overview
Content Tools