Formerly toggl-to-clockify-web
This tool is intended to replace the toggl-to-clockify-cli tool I created for transferring entries from Toggl to Clockify.
I changed the name from toggl-to-clockify-web to transfermyti.me after buying the domain name and completely refactoring the application to allow for two-way transfers.
The tool is step-based, so you start by selecting the action you'd like to perform, then you enter your API keys, and so on. There are help details associated with each step on the website.
You'll need the following to use the application:
This is by no means an exhaustive list, but it makes up the core of the front-end code:
To expedite development and get around API rate limiting, I created a development server that mocks the Toggl and Clockify APIs.
The codebase checks whether the API server should be used based on args passed into the start
scripts.
If you'd like to use the mock server in development, follow the steps in the Development With the Mock Server section below.
If you want to pull and transfer data between the time tracking tools, follow the steps in the Development Without the Mock Server section.
Note: By default I have the mock server enabled, so if you only start the application and get network request failures, it's because you forgot to disable it.
pnpm install
pnpm start:server
(no data will be transferred from Toggl to Clockify)pnpm start:web --mode mocked
to start the web applicationhttp://localhost:8080
pnpm install
pnpm start:web
http://localhost:8080