-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlunarr.yml
58 lines (47 loc) · 1.71 KB
/
lunarr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Lunarr configuration file
server:
# The IP address or hostname the server binds to.
# Default is "127.0.0.1" (localhost).
host: "0.0.0.0"
# The port number the server listens on.
# Default is 8484.
port: 8484
tmdb:
# The API key for accessing TMDb API.
# If provided, the API key will take precedence over the access token.
api_key: ""
# TMDb v4 access token for authentication (Bearer token).
# Only needed if the API key is not provided.
# IMPORTANT: The following access token is for production usage only and should NOT be shared or used in third-party repositories.
access_token: "eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiIzYzM0NTExNGUxNmZiNjM2NWFiMmQxZjA5Y2I5MjlhNyIsIm5iZiI6MTcyNzYwNzQ4OS43NzEwMDYsInN1YiI6IjVlMzVhMzdmNzZlZWNmMDAxNThmNjliZSIsInNjb3BlcyI6WyJhcGlfcmVhZCJdLCJ2ZXJzaW9uIjoxfQ.R3I6onOpLTybIMa0kRXWMz2fWIKFN0GNlsbQ2oHrUzE"
# Path to the directory where the app stores data.
# Default is the user config directory if left blank.
app_data_dir: ""
# Database configuration.
database:
# The database driver to use. Options are "sqlite" and "postgres".
# Default is "sqlite".
driver: "sqlite"
# PostgreSQL-specific configuration (only used if driver is "postgres").
postgres:
host: "localhost"
port: 5432
user: "postgres"
password: "yourpassword"
dbname: "lunarrdb"
# Application settings
app_settings:
# Paths where movies are stored.
movie_locations:
- "/mnt/movies"
# Paths where TV shows are stored.
tv_show_locations:
- "/mnt/tvshows"
# Email SMTP settings
email_smtp:
smtp_server: "smtp.example.com"
port: 587
username: "your_smtp_username"
password: "your_smtp_password"
# Enable or disable new user signup
new_user_signup: true