summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/ci.yml44
-rw-r--r--.config/cypress-devcontainer.yml36
2 files changed, 75 insertions, 5 deletions
diff --git a/.config/ci.yml b/.config/ci.yml
index 8730ccab3a..311a98d8fb 100644
--- a/.config/ci.yml
+++ b/.config/ci.yml
@@ -103,10 +103,28 @@ redis:
# #prefix: example-prefix
# #db: 1
-# ┌───────────────────────────┐
-#───┘ MeiliSearch configuration └─────────────────────────────
+# ┌───────────────────────────────┐
+#───┘ Fulltext search configuration └─────────────────────────────
-# You can set scope to local (default value) or global
+# These are the setting items for the full-text search provider.
+fulltextSearch:
+ # You can select the ID generation method.
+ # - sqlLike (default)
+ # Use SQL-like search.
+ # This is a standard feature of PostgreSQL, so no special extensions are required.
+ # - sqlPgroonga
+ # Use pgroonga.
+ # You need to install pgroonga and configure it as a PostgreSQL extension.
+ # In addition to the above, you need to create a pgroonga index on the text column of the note table.
+ # see: https://pgroonga.github.io/tutorial/
+ # - meilisearch
+ # Use Meilisearch.
+ # You need to install Meilisearch and configure.
+ provider: sqlLike
+
+# For Meilisearch settings.
+# If you select "meilisearch" for "fulltextSearch.provider", it must be set.
+# You can set scope to local or global (default value)
# (include notes from remote).
#meilisearch:
@@ -234,3 +252,23 @@ checkActivityPubGetSignature: false
# Permission bits are specified as a base-8 string representing User/Group/Other permissions.
# This setting is only useful for custom deployments, such as using a reverse proxy to serve media.
#filePermissionBits: '644'
+
+# Log settings
+# logging:
+# sql:
+# # Outputs query parameters during SQL execution to the log.
+# # default: false
+# enableQueryParamLogging: false
+# # Disable query truncation. If set to true, the full text of the query will be output to the log.
+# # default: false
+# disableQueryTruncation: false
+
+# Log settings
+# logging:
+# sql:
+# # Outputs query parameters during SQL execution to the log.
+# # default: false
+# enableQueryParamLogging: false
+# # Disable query truncation. If set to true, the full text of the query will be output to the log.
+# # default: false
+# disableQueryTruncation: false
diff --git a/.config/cypress-devcontainer.yml b/.config/cypress-devcontainer.yml
index c8c4a36d8f..391bc9998c 100644
--- a/.config/cypress-devcontainer.yml
+++ b/.config/cypress-devcontainer.yml
@@ -124,8 +124,29 @@ redis:
# #prefix: example-prefix
# #db: 1
-# ┌───────────────────────────┐
-#───┘ MeiliSearch configuration └─────────────────────────────
+# ┌───────────────────────────────┐
+#───┘ Fulltext search configuration └─────────────────────────────
+
+# These are the setting items for the full-text search provider.
+fulltextSearch:
+ # You can select the ID generation method.
+ # - sqlLike (default)
+ # Use SQL-like search.
+ # This is a standard feature of PostgreSQL, so no special extensions are required.
+ # - sqlPgroonga
+ # Use pgroonga.
+ # You need to install pgroonga and configure it as a PostgreSQL extension.
+ # In addition to the above, you need to create a pgroonga index on the text column of the note table.
+ # see: https://pgroonga.github.io/tutorial/
+ # - meilisearch
+ # Use Meilisearch.
+ # You need to install Meilisearch and configure.
+ provider: sqlLike
+
+# For Meilisearch settings.
+# If you select "meilisearch" for "fulltextSearch.provider", it must be set.
+# You can set scope to local or global (default value)
+# (include notes from remote).
#meilisearch:
# host: meilisearch
@@ -133,6 +154,7 @@ redis:
# apiKey: ''
# ssl: true
# index: ''
+# scope: global
# ┌───────────────┐
#───┘ ID generation └───────────────────────────────────────────
@@ -240,3 +262,13 @@ allowedPrivateNetworks: [
# Permission bits are specified as a base-8 string representing User/Group/Other permissions.
# This setting is only useful for custom deployments, such as using a reverse proxy to serve media.
#filePermissionBits: '644'
+
+# Log settings
+# logging:
+# sql:
+# # Outputs query parameters during SQL execution to the log.
+# # default: false
+# enableQueryParamLogging: false
+# # Disable query truncation. If set to true, the full text of the query will be output to the log.
+# # default: false
+# disableQueryTruncation: false