Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wragge/trove-lists-exhibition
Create a simple exhibition using Trove lists.
https://github.com/wragge/trove-lists-exhibition
code4lib troveaustralia
Last synced: about 2 months ago
JSON representation
Create a simple exhibition using Trove lists.
- Host: GitHub
- URL: https://github.com/wragge/trove-lists-exhibition
- Owner: wragge
- Created: 2015-11-15T01:16:47.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-15T01:11:07.000Z (almost 9 years ago)
- Last Synced: 2024-10-12T15:55:57.278Z (3 months ago)
- Topics: code4lib, troveaustralia
- Language: CSS
- Size: 93.8 KB
- Stars: 1
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Trove Lists Exhibition
This is a AngularJS web app that retrieves lists of resources collected in Trove Lists via the Trove API, and then displays them as a simple exhibition.
You can easily customise it to turn your own collection of lists into an exhibition.
See the [demo](http://wragge.github.io/forecasters-demo).
See [DIY Trove Exhibition](https://github.com/wragge/diy-trove-exhibition) for a simplified version that will have your exhibition online in minutes.
## Setting things up.
Clone this repository into the folder of your choice.
Run the following to install the bits you need:
```
npm install
bower install
```## Customising your exhibition
First get a Trove API key.
Open `index.html` in the editor of your choice.
Look for the 'EDIT THIS SECTION TO ADD YOUR EXHIBITION DETAILS' section.
Modify this to add your own exhibition name, tagline, description and credits. Most importantly, edit the list of lists to include your own.
Insert your API key where you see `var troveAPIKey = "";`
## Generating your exhibition.
To view your exhibition locally:
```
grunt serve
````To build your exhibition for publication:
```
grunt build
```Once the build process is complete, your exhibition will be available in the `dist` directory. Just copy the contents of this directory to the webhost of your choice.