Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikaello/oordliste
Website for describing orienteering lingo (Norwegian only)
https://github.com/mikaello/oordliste
nextjs orienteering orientering website
Last synced: 23 days 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 (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-25T03:41:26.000Z (10 months ago)
- Last Synced: 2024-04-14T12:56:00.535Z (9 months ago)
- Topics: nextjs, orienteering, orientering, website
- Language: JavaScript
- Homepage: https://oordliste.vercel.app/
- Size: 157 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
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