Skip to content

tobiaswaelde/logtowa-api

Repository files navigation

LogTowa Backend

Quality Gate Status Maintainability Rating Security Rating Vulnerabilities Bugs Duplicated Lines (%)

This is the LogTowa backend. It receives the log messages and provides the API for the frontend.

Installation

Docker

# docker-compose.yml
version: '3.9'

services:
  db:
    container_name: logtowa-db
    image: post
    restart: always
    ports:
      - '5432:5432'
    volumes:
      - ./data:/var/lib/postgresql/data/pgdata
    environment:
      POSTGRES_USER: root
      POSTGRES_PASSWORD: secret
      POSTGRES_DB: logtowa
      PGDATA: /var/lib/postgresql/data/pgdata

  logtowa-api:
    container_name: logtowa-api
    image: tobiaswaelde/logtowa-app:latest
    restart: always
    ports:
      - '3001:3001'
    environment:
      PORT: 3001 # optional
      LOG_LEVEL: warn # optional
      DB_HOST: db
      DB_PORT: 5432
      DB_NAME: logtowa
      DB_USERNAME: root
      DB_PASSWORD: secret
      DB_SECURE: true # optional
      DB_SYNC: false # optional
      SOCKET_TOKEN: secret
      AUTH_TOKEN: secret
      RETENTION_ENABLED: true # optional
      RETENTION_CRON: '0 0 * * *' # optional

Environment

Variable Description Required Default Value
PORT The API port no 3001
LOG_LEVEL Level for console logs no warn
DB_HOST Host of the database yes
DB_PORT Port of the database yes 5432
DB_NAME Name of the database yes logtowa
DB_USERNAME User yes
DB_PASSWORD Password yes
DB_SECURE Flag if database connection is secure no true
DB_SYNC Flag if database should be synced with the models no false
SOCKET_TOKEN Token to authenticate socket connections. Used by the winston transport. yes
AUTH_TOKEN Token to authenticate API requests. Used by the frontend. yes
RETENTION_ENABLED Flag if log retention is enabled no true
RETENTION_CRON CRON schedule for log retention no '0 0 * * *'

About

LogTowa Backend

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published