Files
drive-health/.env.example
T

28 lines
666 B
Bash
Raw Normal View History

2024-01-21 21:42:58 +02:00
#
# All time references are in seconds
#
#
############################################################
2024-01-21 18:27:31 +02:00
# The frequency at which to fetch the temperature of ALL disks and add it to the database
2024-01-20 02:06:27 +02:00
DISK_FETCH_FREQUENCY=5
2024-01-21 18:27:31 +02:00
2024-01-21 21:42:58 +02:00
# How ofthen should the program clean the database of old logs
CLEANUP_SERVICE_FREQUENCY=3600
2024-01-21 18:27:31 +02:00
# The maximum age of logs in seconds
2024-01-21 21:42:58 +02:00
# 1 Day = 86400
# 1 Week = 604800
# 1 Month ~= 2592000
# Recommended 1 week
2024-01-20 18:35:50 +02:00
MAX_HISTORY_AGE=2592000
2024-01-21 18:27:31 +02:00
# The ip:port to listen to for the application
LISTEN=":8080"
2024-01-21 19:12:40 +02:00
# Basic Security, these are required to view the data
IDENTITY_USERNAME=admin
2024-01-21 22:56:53 +02:00
IDENTITY_PASSWORD=admin
# Enable/Disable debug features
DEBUG_MODE=false