Skip to content
This repository was archived by the owner on Jul 12, 2022. It is now read-only.

utkdigitalinitiatives/rfta_artists

Repository files navigation

image image image

Canopy

An attempted and mostly pure IIIF Collection site generator using Next.js

Home food processing jar against background of colorful fresh vegetables, including corn, radishes, and tomatoes.

Notes

Canopy is an experimental application that will standup a browseable and searchable digital collections style site entirely from a IIIF Collection and the items it contains.

  • This the epitome of a work-in-progress.
  • Most baselines features are still being proved out.
  • It's definitely possible.

Technical Stuff

# installation
npm install

# development
npm run dev

# build
npm run build

Configuration

Edit canopy.config.js

/**
 * Configuration built by `npm run build`
 */

const config = {
  collection: "https://can-the.vercel.app/iiif/collection/north-american.json",
  title: "The North Americans",
  hero: [
    "https://can-the.vercel.app/iiif/manifest/apache/04-apache-camp.json",
    "https://can-the.vercel.app/iiif/manifest/nez-perce/08-map-territory.json",
  ],
  metadata: ["Subject", "Date", "Dimensions"],
};

/**
 * Configuration built by `npm run dev`
 */
const dev = {
  collection: "http://localhost:5001/iiif-dev/collection/north-american.json",
  title: "The North Americans",
  hero: [
    "http://localhost:5001/iiif-dev/manifest/apache/04-apache-camp.json",
    "http://localhost:5001/iiif-dev/manifest/nez-perce/08-map-territory.json",
    "http://localhost:5001/iiif-dev/manifest/tsawatenok/05-tsawatenok-house-front.json",
  ],
  metadata: ["Subject", "Date", "Dimensions"],
};

exports.config = config;
exports.dev = dev;

About

Serving the Rising from the Ashes Artists Project with canopy-iiif and Next.js

Topics

Resources

License

Stars

0 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Generated from canopy-iiif/app