You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/content/doc/advanced/config-cheat-sheet.en-us.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -356,10 +356,10 @@ relation to port exhaustion.
356
356
-`ISSUE_INDEXER_NAME`: **gitea_issues**: Issue indexer name, available when ISSUE_INDEXER_TYPE is elasticsearch
357
357
-`ISSUE_INDEXER_PATH`: **indexers/issues.bleve**: Index file used for issue search; available when ISSUE_INDEXER_TYPE is bleve and elasticsearch.
358
358
- The next 4 configuration values are deprecated and should be set in `queue.issue_indexer` however are kept for backwards compatibility:
359
-
-`ISSUE_INDEXER_QUEUE_TYPE`: **levelqueue**: Issue indexer queue, currently supports:`channel`, `levelqueue`, `redis`.
360
-
-`ISSUE_INDEXER_QUEUE_DIR`: **queues/common**: When `ISSUE_INDEXER_QUEUE_TYPE` is `levelqueue`, this will be the path where the queue will be saved. (Previously this was `indexers/issues.queue`.)
361
-
-`ISSUE_INDEXER_QUEUE_CONN_STR`: **addrs=127.0.0.1:6379 db=0**: When `ISSUE_INDEXER_QUEUE_TYPE` is `redis`, this will store the redis connection string. When `ISSUE_INDEXER_QUEUE_TYPE` is `levelqueue`, this is a directory or additional options of the form `leveldb://path/to/db?option=value&....`, and overrides `ISSUE_INDEXER_QUEUE_DIR`.
-`ISSUE_INDEXER_QUEUE_TYPE`: **levelqueue**: Issue indexer queue, currently supports:`channel`, `levelqueue`, `redis`.**DEPRECATED** use settings in `[queue.issue_indexer]`.
360
+
-`ISSUE_INDEXER_QUEUE_DIR`: **queues/common**: When `ISSUE_INDEXER_QUEUE_TYPE` is `levelqueue`, this will be the path where the queue will be saved. **DEPRECATED** use settings in `[queue.issue_indexer]`.
361
+
-`ISSUE_INDEXER_QUEUE_CONN_STR`: **addrs=127.0.0.1:6379 db=0**: When `ISSUE_INDEXER_QUEUE_TYPE` is `redis`, this will store the redis connection string. When `ISSUE_INDEXER_QUEUE_TYPE` is `levelqueue`, this is a directory or additional options of the form `leveldb://path/to/db?option=value&....`, and overrides `ISSUE_INDEXER_QUEUE_DIR`.**DEPRECATED** use settings in `[queue.issue_indexer]`.
362
+
-`ISSUE_INDEXER_QUEUE_BATCH_NUMBER`: **20**: Batch queue number.**DEPRECATED** use settings in `[queue.issue_indexer]`.
363
363
364
364
-`REPO_INDEXER_ENABLED`: **false**: Enables code search (uses a lot of disk space, about 6 times more than the repository size).
365
365
-`REPO_INDEXER_TYPE`: **bleve**: Code search engine type, could be `bleve` or `elasticsearch`.
@@ -370,7 +370,7 @@ relation to port exhaustion.
370
370
-`REPO_INDEXER_INCLUDE`: **empty**: A comma separated list of glob patterns (see https://github.com/gobwas/glob) to **include** in the index. Use `**.txt` to match any files with .txt extension. An empty list means include all files.
371
371
-`REPO_INDEXER_EXCLUDE`: **empty**: A comma separated list of glob patterns (see https://github.com/gobwas/glob) to **exclude** from the index. Files that match this list will not be indexed, even if they match in `REPO_INDEXER_INCLUDE`.
372
372
-`REPO_INDEXER_EXCLUDE_VENDORED`: **true**: Exclude vendored files from index.
373
-
-`UPDATE_BUFFER_LEN`: **20**: Buffer length of index request.
373
+
-`UPDATE_BUFFER_LEN`: **20**: Buffer length of index request.**DEPRECATED** use settings in `[queue.issue_indexer]`.
374
374
-`MAX_FILE_SIZE`: **1048576**: Maximum size in bytes of files to be indexed.
375
375
-`STARTUP_TIMEOUT`: **30s**: If the indexer takes longer than this timeout to start - fail. (This timeout will be added to the hammer time above for child processes - as bleve will not start until the previous parent is shutdown.) Set to zero to never timeout.
// description: comma separated list of milestone names or ids. It uses names and fall back to ids. Fetch only issues that have any of this milestones. Non existent milestones are discarded
268
268
// type: string
269
+
// - name: since
270
+
// in: query
271
+
// description: Only show notifications updated after the given time. This is a timestamp in RFC 3339 format
272
+
// type: string
273
+
// format: date-time
274
+
// required: false
275
+
// - name: before
276
+
// in: query
277
+
// description: Only show notifications updated before the given time. This is a timestamp in RFC 3339 format
278
+
// type: string
279
+
// format: date-time
280
+
// required: false
281
+
// - name: created_by
282
+
// in: query
283
+
// description: filter (issues / pulls) created to
284
+
// type: string
285
+
// - name: assigned_by
286
+
// in: query
287
+
// description: filter (issues / pulls) assigned to
288
+
// type: string
289
+
// - name: mentioned_by
290
+
// in: query
291
+
// description: filter (issues / pulls) mentioning to
292
+
// type: string
269
293
// - name: page
270
294
// in: query
271
295
// description: page number of results to return (1-based)
0 commit comments