fmeringdal
nettu-scheduler
Rust

A self-hosted calendar and scheduler server.

Last updated May 24, 2026
562
Stars
36
Forks
7
Issues
0
Stars/day
Attention Score
31
Language breakdown
Rust 93.7%
TypeScript 5.6%
PLpgSQL 0.2%
Shell 0.2%
Dockerfile 0.2%
Makefile 0.1%
โ–ธ Files click to expand
README

logo

Nettu scheduler

MIT licensed Release codecov

Overview

Nettu scheduler is a self-hosted calendar and scheduler server that aims to provide the building blocks for building calendar / booking apps with ease. It has a simple REST API and also a JavaScript SDK and Rust SDK.

It supports authentication through api keys for server - server communication and JSON Web Tokens for browser - server communication.

Features

  • Booking: Create a Service and register Users on it to make them bookable.
  • Calendar Events: Supports recurrence rules, flexible querying and reminders.
  • Calendars: For grouping Calendar Events.
  • Freebusy: Find out when Users are free and when they are busy.
  • Integrations: Connect your Nettu, Google and Outlook calendars
  • Multi-tenancy: All resources are grouped by Accounts.
  • Metadata queries: Add key-value metadata to your resources and then query on that metadata
  • Webhooks: Notifying your server about Calendar Event reminders.

Application flow

Quick start

The server is using PostgreSQL for persistence, so we will need to spin up that first:

cd scheduler
docker-compose -f integrations/docker-compose.yml up -d

Now we are ready to start the nettu-scheduler server with cargo

cd scheduler
export ACCOUNTAPIKEY="REPLACE_ME"
export DATABASE_URL="postgresql://postgres:postgres@localhost:5432/nettuscheduler"
export PORT="3000"
cargo run

The ACCOUNTAPIKEY environment variable is going to create an Account (if it does not already exist) during server startup with the given key. Accounts act as tenants in the server, and it is possible to create multiple Accounts by using the CREATEACCOUNTSECRET_CODE which you can provide as an environment variable.

Quick example of how to create and query a user

export SECRETAPIKEY="REPLACE ME WITH YOUR API KEY"

Create a user with metadata

curl -X POST -H "Content-Type: application/json" -H "x-api-key: $SECRETAPIKEY" -d '{"metadata": { "groupId": "123" }}' http://localhost:5000/api/v1/user

Get users by metadata

curl -H "x-api-key: $SECRETAPIKEY" "http://localhost:5000/api/v1/user/meta?key=groupId&value=123"

Please see below for links to more examples.

Examples

Contributing

Contributions are welcome and are greatly appreciated!

License

MIT

Special thanks

  • Lemmy for inspiration on how to use cargo workspace to organize a web app in rust.
  • The author of this blog post for an excellent introduction on how to do telemetry in rust.
๐Ÿ”— More in this category

ยฉ 2026 GitRepoTrend ยท fmeringdal/nettu-scheduler ยท Updated daily from GitHub