Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 994 Bytes

README.md

File metadata and controls

43 lines (31 loc) · 994 Bytes

Oordliste

This is a simple website generated to explain a bunch of orienteering terms. The website is built with Next.js.

ordliste = dictionary in Norwegian

Run website locally

Start development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

API

The data presented on the webpage is available as an API endpoint: https://oordliste.vercel.app/api/dictionary. The API has the following TypeScript type:

type oordliste = []{
    name: string,
    description: string,
    /** A list of tags that can be used to group related items together */
    tags: []string,
    /** Items in this list related to this item, an array consisting of `name`s of other items. */
    related: []string,
    /** Other names for this item */
    aliases: []string,
}

Deploy

Every push to default branch will create a new deployment and publish the website at https://oordliste.vercel.app