Compare commits

...

1 commit
master ... prod

Author SHA1 Message Date
128725c38f some alterations to the code and defaulted stuff 2025-02-14 23:28:45 +01:00
4 changed files with 7 additions and 6 deletions

View file

@ -61,4 +61,4 @@ $safety-sketchy = #F3D75F
$safety-unsafe = #F3985F
$scrollbar-thumb-color = $main-color
$scrollbar-bg-color = $input-enabled-background-color
$transparency-grid-square-color = #00000000
$transparency-grid-square-color = #F0F0F0

View file

@ -11,13 +11,13 @@ const defaultSettings = {
upscaleSmallPosts: false,
endlessScroll: false,
keyboardShortcuts: true,
transparencyGrid: true,
transparencyGrid: false,
fitMode: "fit-both",
tagSuggestions: true,
autoplayVideos: false,
postsPerPage: 42,
tagUnderscoresAsSpaces: false,
darkTheme: false,
darkTheme: true,
postFlow: false,
};

View file

@ -9,6 +9,7 @@ BUILD_INFO=latest
# Set to 127.0.0.1:8080 if you wish to reverse-proxy the docker's port,
# otherwise the port specified here will be publicly accessible
PORT=8080
# EXPOSED_POSTGRES_PORT=34517
# How many waitress threads to start
# 4 is the default amount of threads. If you experience performance

View file

@ -40,7 +40,7 @@ services:
volumes:
- "${MOUNT_DATA}:/data:ro"
ports:
- "${PORT}:80"
- "${PORT:-3000}:80"
sql:
image: postgres:11-alpine
@ -48,7 +48,7 @@ services:
environment:
POSTGRES_USER:
POSTGRES_PASSWORD:
# ports:
# - 5432:5432
ports:
- "${EXPOSED_POSTGRES_PORT:-34517}:5432"
volumes:
- "${MOUNT_SQL}:/var/lib/postgresql/data"