Versions Compared

Key

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

...

Environments

There are three ArchivesSpace environments we use:

  • development: refers to the local development environment each developer is running on their machine.

  • test: refers to the remote test instance managed by Lyrasis. This is the instance where testing is done prior to a production deployment.

  • production: refers to the ArchivesSpace production instance, which is also managed by Lyrasis.

Each directory in this repository is named after one of the environments listed above. Under each directory, there are two files:

  • config.rb: contains all the custom configurations to the ArchivesSpace environment

  • plugins.yml: contains a list of all the plugins included in the the ArchivesSpace environment. Each plugin must have the following attributes:

Code Block
plugins:
  - name: aspace_static_plugins # matches git repository name
    git: true
    branch: "v0.2.1" # matches the version tag or branch in that plugin's repository
    url: https://github.com/emory-libraries/aspace_static_plugins.git # url of the plugin's git repository
Github

All code related to Emory’s instance of ArchivesSpace is maintained in Github:

...