feat: enable indexer for search #33
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "indexer"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
See coop-cloud/organising#589.
Default remains the same, disabled.
https://docs.gitea.com/next/administration/repo-indexer#setting-up-the-repository-indexer
https://docs.gitea.com/administration/config-cheat-sheet#indexer-indexer
Seems fine, thanks! One suggestion
@ -33,3 +33,3 @@
[indexer]
STARTUP_TIMEOUT = 0
REPO_INDEXER_ENABLED = {{ env "GITEA_REPO_INDEXER_ENABLED" }}
Worth doing like
{{ or (env "GITEA_REPO_INDEXER_ENABLED") "false" }}
to avoid everyone needing to add new defaults here?@ -34,2 +34,3 @@
[indexer]
STARTUP_TIMEOUT = 0
REPO_INDEXER_ENABLED = {{ env "GITEA_REPO_INDEXER_ENABLED" }}
STARTUP_TIMEOUT = {{ env "GITEA_STARTUP_TIMEOUT" }}
Ditto
@ -0,0 +1,7 @@
Please add the following new defaults to your `.env` file:
Can remove this entirely if above is implemented?
5df896271a
toea7e26698a
@3wordchant noice, patched with that cool "or" syntax!