From a35795b953e8d308bdfdcfbafbe74471f98ba1cb Mon Sep 17 00:00:00 2001 From: SkywalkerSpace Date: Tue, 21 Apr 2026 10:32:04 +0800 Subject: [PATCH 1/3] 6.2 SECRET_KEY --- docs/configuration/overview.md | 3 +++ docs/installation/advanced/seatable-ai-standalone.md | 2 ++ docs/installation/basic-setup.md | 3 +++ .../installation/cluster/basic-setup-with-external-services.md | 2 ++ 4 files changed, 10 insertions(+) diff --git a/docs/configuration/overview.md b/docs/configuration/overview.md index bfb187ab..4b72fbcd 100644 --- a/docs/configuration/overview.md +++ b/docs/configuration/overview.md @@ -48,6 +48,8 @@ REDIS_PASSWORD='topsecret' JWT_PRIVATE_KEY='topsecret' # (8)! +SECRET_KEY='anothertopsecret' # (15)! + # SeaDoc ENABLE_SEADOC='false' SEADOC_PORT='' @@ -104,6 +106,7 @@ SEATABLE_HELP_LINK=https://seatable.com/help/ # (11)! 12. Please refer to [Email Sending](./sending-email.md) for more information. 13. Please refer to [Python Pipeline](../installation/components/python-pipeline.md) for more information. 14. Please refer to [SeaTable AI](../installation/components/seatable-ai.md) for more information. +15. This secret key is used to Django in SeaTable. -To enable S3 storage for base snapshots, files and pictures, add `seatable-s3.yml` to the `COMPOSE_FILE` variable inside your `.env` file. +To enable S3 storage for base snapshots, files, pictures and avatars, add `seatable-s3.yml` to the `COMPOSE_FILE` variable inside your `.env` file. This instructs Docker-Compose to extend the definition of the `seatable-server` service defined inside `seatable-server.yml`. @@ -108,6 +108,7 @@ Afterwards, you must configure a few environment variables inside your `.env` fi S3_COMMIT_BUCKET='' S3_FS_BUCKET='' S3_BLOCK_BUCKET='' + S3_AVATAR_BUCKET='' S3_KEY_ID='' S3_SECRET_KEY='' ``` @@ -121,6 +122,7 @@ Afterwards, you must configure a few environment variables inside your `.env` fi S3_COMMIT_BUCKET='' S3_FS_BUCKET='' S3_BLOCK_BUCKET='' + S3_AVATAR_BUCKET='' S3_HOST='sos-de-fra-1.exo.io' S3_KEY_ID='' S3_SECRET_KEY='' @@ -136,6 +138,7 @@ Afterwards, you must configure a few environment variables inside your `.env` fi S3_COMMIT_BUCKET='' S3_FS_BUCKET='' S3_BLOCK_BUCKET='' + S3_AVATAR_BUCKET='' S3_HOST='fsn1.your-objectstorage.com' S3_KEY_ID='' S3_SECRET_KEY='' @@ -151,6 +154,7 @@ Afterwards, you must configure a few environment variables inside your `.env` fi S3_COMMIT_BUCKET='' S3_FS_BUCKET='' S3_BLOCK_BUCKET='' + S3_AVATAR_BUCKET='' S3_HOST='' S3_KEY_ID='' S3_SECRET_KEY='' @@ -394,7 +398,7 @@ S3 Object storage for file and picture columns is configured in `/opt/seatable-s memcached_options = --SERVER=memcached --POOL-MIN=10 --POOL-MAX=100 ``` -## S3 for avatars +### S3 for avatars From 5ca26d3b98f3dbb71a708f67e3efbbba1c444933 Mon Sep 17 00:00:00 2001 From: SkywalkerSpace Date: Mon, 27 Apr 2026 15:16:27 +0800 Subject: [PATCH 3/3] env LOG_LEVEL --- docs/configuration/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/overview.md b/docs/configuration/overview.md index 4b72fbcd..ae0f5451 100644 --- a/docs/configuration/overview.md +++ b/docs/configuration/overview.md @@ -79,7 +79,7 @@ SEATABLE_TEMPLATE_TABLE_NAME= SEATABLE_ENABLE_CREATE_BASE_FROM_TEMPLATE= # Logging -SEATABLE_LOG_LEVEL=INFO # (10)! +LOG_LEVEL=INFO # (10)! # Docker Images # You can use these variables to override the default images