diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-02-03 14:51:59 -0500 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-02-03 14:51:59 -0500 |
| commit | 4a86ab6857bdd15f7c4e9fd9cc4b496a2fa058e7 (patch) | |
| tree | 749c58fee2768641d6a841c873c200e346229fba /.config/cypress-devcontainer.yml | |
| parent | fix lint error in ApRendererService.ts (diff) | |
| download | sharkey-4a86ab6857bdd15f7c4e9fd9cc4b496a2fa058e7.tar.gz sharkey-4a86ab6857bdd15f7c4e9fd9cc4b496a2fa058e7.tar.bz2 sharkey-4a86ab6857bdd15f7c4e9fd9cc4b496a2fa058e7.zip | |
copy changes to ci.yml and cypress-devcontainer.yml
Diffstat (limited to '.config/cypress-devcontainer.yml')
| -rw-r--r-- | .config/cypress-devcontainer.yml | 36 |
1 files changed, 34 insertions, 2 deletions
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 |