-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update readme for basic dev install instructions, add yaml package fo…
…r psych gem
- Loading branch information
Showing
3 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.8.10 | ||
2.8.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,27 @@ | |
Cerberus is the Ruby on Rails codebase for Northeastern's Digital Repository Service. | ||
|
||
The code base utilizes Valkyrie, Blacklight, Solr and PostgreSQL | ||
|
||
## Getting started | ||
|
||
Make sure you have docker installed. | ||
|
||
Get a copy of the codebase | ||
``` | ||
git clone [email protected]:NEU-Libraries/cerberus.git | ||
``` | ||
|
||
Use docker compose to pull down the containers and build Cerberus | ||
``` | ||
ATLAS=0.0.157 docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build | ||
``` | ||
|
||
Once running, use another console/tab to go inside the container. | ||
``` | ||
docker exec -ti cerberus-web-1 /bin/sh | ||
``` | ||
|
||
Once inside, generate some test objects | ||
``` | ||
bundle exec rake reset:data | ||
``` |