https://github.com/mikaello/oordliste
Website for describing orienteering lingo (Norwegian only)
https://github.com/mikaello/oordliste
nextjs orienteering orientering website
Last synced: 2 months ago
JSON representation
Website for describing orienteering lingo (Norwegian only)
- Host: GitHub
- URL: https://github.com/mikaello/oordliste
- Owner: mikaello
- Created: 2021-03-08T21:06:14.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2026-04-20T18:53:34.000Z (3 months ago)
- Last Synced: 2026-04-20T19:37:18.609Z (3 months ago)
- Topics: nextjs, orienteering, orientering, website
- Language: Nunjucks
- Homepage: https://oordliste.vercel.app/
- Size: 330 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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:
```bash
npm run dev
# or
yarn dev
```
Open [http://localhost:3000](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:
```typescript
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