Skip to content

Commit d3fba98

Browse files
committed
Fix selfhosted timescale/gh app vars
1 parent eca6d9f commit d3fba98

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

config/codecov.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,42 @@ setup:
1818
cookies_domain: localhost
1919
timeseries:
2020
enabled: true
21+
ta_timeseries:
22+
enabled: true
2123
github:
2224
client_id: "<client-id>"
2325
client_secret: "<client-secret>"
2426
global_upload_token: "<upload-token>"
27+
enabled: true
28+
integration_id_enabled: true
29+
webhook_secret_enabled: true
30+
global_upload_token_enabled: true
31+
webhook_secret: "<webhook-secret>"
32+
integration:
33+
id: "<integration-id>"
34+
pem: /config/github.pem
35+
36+
# Config for other git providers
37+
# github_enterprise:
38+
# enabled: true
39+
# integration_id_enabled: true
40+
# webhook_secret_enabled: true
41+
# global_upload_token_enabled: true
42+
# client_id: "<client-id>"
43+
# gitlab_enterprise:
44+
# client_id: "<client-id>"
45+
# enabled: true
46+
# global_upload_token_enabled: false
47+
# bitbucket_server:
48+
# client_id: "<client-id>"
49+
# enabled: true
50+
# global_upload_token_enabled: false
51+
2552
services:
2653
redis_url: "redis://redis:6379"
2754
database_url: "postgres://postgres:testpassword@postgres:5432/postgres"
2855
timeseries_database_url: "postgres://postgres:testpassword@timescale:5432/postgres"
56+
ta_timeseries_database_url: "postgres://postgres:testpassword@timescale:5432/postgres"
2957
minio:
3058
host: minio
3159
port: 9000

docker-compose.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ services:
2525
- CODECOV_API_HOST=localhost:8080
2626
- CODECOV_IA_HOST=localhost:8080
2727
- CODECOV_SCHEME=http
28+
# Config for other git providers
29+
# - CODECOV_GHE_HOST=ghe.yourdomain.com
30+
# - GITHUB_ENTERPRISE_CLIENT_ID:<client-id>
31+
# - CODECOV_GLE_HOST=ghe.yourdomain.com
32+
# - GITLAB_ENTERPRISE_CLIENT_ID:<client-id>
33+
# - CODECOV_BBS_HOST=ghe.yourdomain.com
34+
# - BITBUCKET_SERVER_CLIENT_ID:<client-id>
2835
volumes:
2936
- ./config:/config
3037
ports:
@@ -78,7 +85,7 @@ services:
7885
- codecov
7986

8087
timescale:
81-
image: timescale/timescaledb:latest-pg14
88+
image: timescale/timescaledb:latest-pg17
8289
environment:
8390
- POSTGRES_PASSWORD=testpassword
8491
- POSTGRES_USER=postgres

0 commit comments

Comments
 (0)