# References and Resources
TimescaleDB official website (opens new window)
TimescaleDB official documentation (opens new window)
TimescaleDB offical Repository (opens new window)
# Timescale DB Designing a Scalable Time Series Database on PostgreSQL
# ANNEXE A - Installation on OpenBSD
wget https://github.com/timescale/timescaledb/archive/refs/tags/2.13.0.tar.gz
tar zxvf 2.13.0.tar.gz
cd timescaledb-2.13.0/
mkdir build
cd build
cmake ..
make
doas make install
doas su - _postgresql
psql -U _postgresql postgres
CREATE database example;
\c example
CREATE EXTENSION IF NOT EXISTS timescaledb;
see: Install self-hosted TimescaleDB from source (opens new window)