mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
Sourcebot V4 introduces authentication, performance improvements and code navigation. Checkout the [migration guide](https://docs.sourcebot.dev/self-hosting/upgrade/v3-to-v4-guide) for information on upgrading your instance to v4. ### Changed - [**Breaking Change**] Authentication is now required by default. Notes: - When setting up your instance, email / password login will be the default authentication provider. - The first user that logs into the instance is given the `owner` role. ([docs](https://docs.sourcebot.dev/docs/more/roles-and-permissions)). - Subsequent users can request to join the instance. The `owner` can approve / deny requests to join the instance via `Settings` > `Members` > `Pending Requests`. - If a user is approved to join the instance, they are given the `member` role. - Additional login providers, including email links and SSO, can be configured with additional environment variables. ([docs](https://docs.sourcebot.dev/self-hosting/configuration/authentication)). - Clicking on a search result now takes you to the `/browse` view. Files can still be previewed by clicking the "Preview" button or holding `Cmd` / `Ctrl` when clicking on a search result. [#315](https://github.com/sourcebot-dev/sourcebot/pull/315) ### Added - [Sourcebot EE] Added search-based code navigation, allowing you to jump between symbol definition and references when viewing source files. [Read the documentation](https://docs.sourcebot.dev/docs/search/code-navigation). [#315](https://github.com/sourcebot-dev/sourcebot/pull/315) - Added collapsible filter panel. [#315](https://github.com/sourcebot-dev/sourcebot/pull/315) ### Fixed - Improved scroll performance for large numbers of search results. [#315](https://github.com/sourcebot-dev/sourcebot/pull/315)
94 lines
2.4 KiB
Text
94 lines
2.4 KiB
Text
|
|
# Prisma
|
|
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/postgres"
|
|
|
|
# Zoekt
|
|
ZOEKT_WEBSERVER_URL="http://localhost:6070"
|
|
# SHARD_MAX_MATCH_COUNT=10000
|
|
# TOTAL_MAX_MATCH_COUNT=100000
|
|
# The command to use for generating ctags.
|
|
CTAGS_COMMAND=ctags
|
|
# logging, strict
|
|
SRC_TENANT_ENFORCEMENT_MODE=strict
|
|
|
|
# Auth.JS
|
|
# You can generate a new secret with:
|
|
# openssl rand -base64 33
|
|
# @see: https://authjs.dev/getting-started/deployment#auth_secret
|
|
AUTH_SECRET="00000000000000000000000000000000000000000000"
|
|
AUTH_URL="http://localhost:3000"
|
|
# AUTH_CREDENTIALS_LOGIN_ENABLED=true
|
|
# AUTH_EE_GITHUB_CLIENT_ID=""
|
|
# AUTH_EE_GITHUB_CLIENT_SECRET=""
|
|
# AUTH_EE_GOOGLE_CLIENT_ID=""
|
|
# AUTH_EE_GOOGLE_CLIENT_SECRET=""
|
|
|
|
DATA_CACHE_DIR=${PWD}/.sourcebot # Path to the sourcebot cache dir (ex. ~/sourcebot/.sourcebot)
|
|
# CONFIG_PATH=${PWD}/config.json # Path to the sourcebot config file (if one exists)
|
|
|
|
# Email
|
|
# EMAIL_FROM_ADDRESS="" # The from address for transactional emails.
|
|
# SMTP_CONNECTION_URL="" # The SMTP connection URL for transactional emails.
|
|
|
|
# PostHog
|
|
# POSTHOG_PAPIK=""
|
|
# NEXT_PUBLIC_POSTHOG_PAPIK=""
|
|
|
|
# Sentry
|
|
# SENTRY_BACKEND_DSN=""
|
|
# NEXT_PUBLIC_SENTRY_WEBAPP_DSN=""
|
|
# SENTRY_ENVIRONMENT="dev"
|
|
# NEXT_PUBLIC_SENTRY_ENVIRONMENT="dev"
|
|
# SENTRY_AUTH_TOKEN=
|
|
|
|
# Logtail
|
|
# LOGTAIL_TOKEN=""
|
|
# LOGTAIL_HOST=""
|
|
|
|
# Redis
|
|
REDIS_URL="redis://localhost:6379"
|
|
|
|
# Stripe
|
|
# STRIPE_SECRET_KEY: z.string().optional(),
|
|
# STRIPE_PRODUCT_ID: z.string().optional(),
|
|
# STRIPE_WEBHOOK_SECRET: z.string().optional(),
|
|
# STRIPE_ENABLE_TEST_CLOCKS=false
|
|
|
|
# Agents
|
|
|
|
# GITHUB_APP_ID=
|
|
# GITHUB_APP_PRIVATE_KEY_PATH=
|
|
# GITHUB_APP_WEBHOOK_SECRET=
|
|
# OPENAI_API_KEY=
|
|
REVIEW_AGENT_LOGGING_ENABLED=true
|
|
REVIEW_AGENT_AUTO_REVIEW_ENABLED=false
|
|
REVIEW_AGENT_REVIEW_COMMAND=review
|
|
|
|
# Misc
|
|
|
|
# Generated using:
|
|
# openssl rand -base64 24
|
|
SOURCEBOT_ENCRYPTION_KEY="00000000000000000000000000000000"
|
|
|
|
SOURCEBOT_LOG_LEVEL="debug" # valid values: info, debug, warn, error
|
|
SOURCEBOT_TELEMETRY_DISABLED=true # Disables telemetry collection
|
|
|
|
# Code-host fallback tokens
|
|
# FALLBACK_GITHUB_CLOUD_TOKEN=""
|
|
# FALLBACK_GITLAB_CLOUD_TOKEN=""
|
|
# FALLBACK_GITEA_CLOUD_TOKEN=""
|
|
|
|
# Controls the number of concurrent indexing jobs that can run at once
|
|
# INDEX_CONCURRENCY_MULTIPLE=
|
|
|
|
# Controls the polling interval for the web app
|
|
# NEXT_PUBLIC_POLLING_INTERVAL_MS=
|
|
|
|
# Controls the version of the web app
|
|
# NEXT_PUBLIC_SOURCEBOT_VERSION=
|
|
|
|
# CONFIG_MAX_REPOS_NO_TOKEN=
|
|
# NODE_ENV=
|
|
# SOURCEBOT_TENANCY_MODE=single
|
|
|
|
# NEXT_PUBLIC_SOURCEBOT_CLOUD_ENVIRONMENT=
|