Skip to content

Getting Started

After installing the plugin in your server you have to start it once to generate the config in plugins/PaperTimeSeries folder.

You should edit the database configuration inside so that it can connect to the database and generate the table and insert the data

plugin.yml
database:
url: jdbc:postgresql://localhost:5432/paper
user: paper
password: time

And a example docker-compose.yml file

PaperTimeSeries requires TimescaleDB, you can find out how to host it here https://docs.timescale.com/self-hosted/latest/

docker-compose.yml
version: "3"
services:
postgresql:
image: timescale/timescaledb-ha:pg15-latest
restart: always
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: time
POSTGRES_DB: paper
POSTGRES_USER: paper
TZ: UTC