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
Nice project. However I'm facing a specific issue. I have many projects connected to Github repos that are both private and public. When I try to use the Time Spent Per Commit feature, it throws a red alert error at the top right saying "Failed to fetch the commit log". Then when I look at the Docker logs I see the following:
Is this a known issue? I've got the correct permissions on my Personal Access Token. I've even tried using a token with all permissions enabled just to test but same result. And interestingly, when I look at the list of the tokens on Github, they each say Never used.
Here's my Docker-Compose config for context:
version: "3"
services:
server:
container_name: hakatime
image: mujx/hakatime:v1.7.3
environment:
# DB settings.
HAKA_DB_HOST: haka_db
HAKA_DB_PORT: 5432
HAKA_DB_NAME: hakatime
HAKA_DB_PASS: <my_pg_pw>
HAKA_DB_USER: <my_pg_user>
# Server settings.
# Fill out this field if the api is behind another path (e.g behind a reverse proxy).
# This will adjust the Set-Cookie path for all the /auth related API calls.
HAKA_API_PREFIX: ""
# Update this with the external endpoint that you use to access hakatime.
HAKA_BADGE_URL: "https://<my_hakatime_instance_url>"
HAKA_PORT: 8080
HAKA_SHIELDS_IO_URL: "https://img.shields.io"
HAKA_ENABLE_REGISTRATION: "true" # Toggle after you've created your account.
# Number of hours after which inactive browser sessions will expire (login required).
HAKA_SESSION_EXPIRY: "24"
HAKA_LOG_LEVEL: "info" # Control the verbosity of the logger.
HAKA_ENV: "dev" # Use a json logger for production, otherwise key=value pairs.
HAKA_HTTP_LOG: "true" # If you want to log http requests.
GITHUB_TOKEN: "<ghp_my_token>" # If you want to retrieve time spent per commit. No extra scope is required.
# Add the following variables if you want to forward any received heartbeats to another
# Wakatime compatible server.
HAKA_REMOTE_WRITE_URL: "https://wakatime.com/api/v1/users/current/heartbeats.bulk"
HAKA_REMOTE_WRITE_TOKEN: "<my_wakatime.com_api_key>"
ports:
- "3117:8080"
haka_db:
container_name: haka_db
image: postgres:12-alpine
environment:
POSTGRES_DB: hakatime
POSTGRES_PASSWORD: <pg_password>
POSTGRES_USER: <pg_user>
volumes:
- deploy_db_data:/var/lib/postgresql/data
volumes:
deploy_db_data: {}
Thanks in advance
The text was updated successfully, but these errors were encountered:
Hi,
Nice project. However I'm facing a specific issue. I have many projects connected to Github repos that are both private and public. When I try to use the Time Spent Per Commit feature, it throws a red alert error at the top right saying
"Failed to fetch the commit log"
. Then when I look at the Docker logs I see the following:Is this a known issue? I've got the correct permissions on my Personal Access Token. I've even tried using a token with all permissions enabled just to test but same result. And interestingly, when I look at the list of the tokens on Github, they each say
Never used
.Here's my Docker-Compose config for context:
Thanks in advance
The text was updated successfully, but these errors were encountered: