Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions config/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,42 @@ setup:
cookies_domain: localhost
timeseries:
enabled: true
ta_timeseries:
enabled: true
github:
client_id: "<client-id>"
client_secret: "<client-secret>"
global_upload_token: "<upload-token>"
enabled: true
integration_id_enabled: true
webhook_secret_enabled: true
global_upload_token_enabled: true
webhook_secret: "<webhook-secret>"
integration:
id: "<integration-id>"
pem: /config/github.pem

# Config for other git providers
# github_enterprise:
# enabled: true
# integration_id_enabled: true
# webhook_secret_enabled: true
# global_upload_token_enabled: true
# client_id: "<client-id>"
# gitlab_enterprise:
# client_id: "<client-id>"
# enabled: true
# global_upload_token_enabled: false
# bitbucket_server:
# client_id: "<client-id>"
# enabled: true
# global_upload_token_enabled: false

services:
redis_url: "redis://redis:6379"
database_url: "postgres://postgres:testpassword@postgres:5432/postgres"
timeseries_database_url: "postgres://postgres:testpassword@timescale:5432/postgres"
ta_timeseries_database_url: "postgres://postgres:testpassword@timescale:5432/postgres"
minio:
host: minio
port: 9000
Expand Down
9 changes: 8 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ services:
- CODECOV_API_HOST=localhost:8080
- CODECOV_IA_HOST=localhost:8080
- CODECOV_SCHEME=http
# Config for other git providers
# - CODECOV_GHE_HOST=ghe.yourdomain.com
# - GITHUB_ENTERPRISE_CLIENT_ID:<client-id>
# - CODECOV_GLE_HOST=ghe.yourdomain.com
# - GITLAB_ENTERPRISE_CLIENT_ID:<client-id>
# - CODECOV_BBS_HOST=ghe.yourdomain.com
# - BITBUCKET_SERVER_CLIENT_ID:<client-id>
volumes:
- ./config:/config
ports:
Expand Down Expand Up @@ -78,7 +85,7 @@ services:
- codecov

timescale:
image: timescale/timescaledb:latest-pg14
image: timescale/timescaledb:latest-pg17
environment:
- POSTGRES_PASSWORD=testpassword
- POSTGRES_USER=postgres
Expand Down
Loading