The name is inspired by the watchful owl perching from the tree tops with complete overview of all that's going on combined with -tide in the sense it's used for in words like summertide and eastertide.
29 lines
600 B
Markdown
29 lines
600 B
Markdown
<!--
|
|
SPDX-FileCopyrightText: © 2025 Hornwitser <code@hornwitser.no>
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
# Owltide
|
|
|
|
Owltide is a free open source event scheduling software for keeping the attendees at events informed about all the things going on. It's currently in early stages of development and not generallly useful.
|
|
|
|
|
|
## Development setup
|
|
|
|
Use pnpm to install dependencies:
|
|
|
|
```bash
|
|
pnpm install
|
|
```
|
|
|
|
Run the development server on `http://localhost:3000` with:
|
|
|
|
```bash
|
|
pnpm dev
|
|
```
|
|
|
|
Build and preview the production build with (rarely needed):
|
|
|
|
```bash
|
|
pnpm build
|
|
pnpm preview
|
|
```
|