diff --git a/.dockerignore b/.dockerignore
index c33d6bf..c58ee53 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -28,3 +28,4 @@ node_modules
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
+.idea
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 699266e..252f3c4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,4 @@ node_modules
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
+.idea
\ No newline at end of file
diff --git a/.prettierignore b/.prettierignore
index 3c4586e..a0f8a74 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -2,4 +2,5 @@
pnpm-lock.yaml
package-lock.json
yarn.lock
-CHANGELOG.md
\ No newline at end of file
+CHANGELOG.md
+.idea
\ No newline at end of file
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index 2e7cd4c..b422dc9 100644
--- a/docker-entrypoint.sh
+++ b/docker-entrypoint.sh
@@ -1,9 +1,13 @@
#!/bin/sh
-# Export the ORIGIN and BACKEND_URL environment variables
-export ORIGIN=${ORIGIN}
+if [ -z "$ORIGIN" ]; then
+ echo "ORIGIN is not set"
+ export PROTOCOL_HEADER=x-forwarded-proto
+ export HOST_HEADER=x-forwarded-host
+else
+ export ORIGIN=${ORIGIN}
+fi
+
export BACKEND_URL=${BACKEND_URL}
export DIALECT=${DIALECT}
export DATABASE_URL=${DATABASE_URL}
-
-# Execute the command provided to the script
exec "$@"
\ No newline at end of file
diff --git a/eslint.config.js b/eslint.config.js
index 1d362fb..3decb1c 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -48,6 +48,6 @@ export default [
}
},
{
- ignores: ['build/', '.svelte-kit/', 'dist/', 'src/lib/components/ui/']
+ ignores: ['build/', '.svelte-kit/', 'dist/', 'src/lib/components/ui/', '.idea/']
}
];
diff --git a/src/lib/forms/general-form.svelte b/src/lib/forms/general-form.svelte
index b377853..b9ecf38 100644
--- a/src/lib/forms/general-form.svelte
+++ b/src/lib/forms/general-form.svelte
@@ -266,6 +266,65 @@
{/if}
+
Add subtitle languages
+