-
Is this even supported, or am I on my own? Given it has a wakatime importer, I thought I'd be able to export my data from the sqlite instance, setup a new mysql instance and import it, but that functionality doesn't seem to exist. Perhaps I can convert/export sqlite to mysql? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
While migrating from one database to another is not something that's inherently supported by Wakapi itself, it should still be fairly straightforward. Possible options include:
Note that options 1 and 2 will only copy the raw heartbeats data, but, for example, no users or user settings. |
Beta Was this translation helpful? Give feedback.
-
Hello, I would like to move everything to a new machine on the local network, I have tried on the new machine to enter as the URL http://my-local-ip:3000/api/compat/wakatime/v1 and as the key that of the old instance. When I click on connect I get an error message: Failed to connect to wakatime, api key or endpoint url invalid? |
Beta Was this translation helpful? Give feedback.
-
@muety, @Dario-Ciceri, @elfensky could you document the steps in the wiki? |
Beta Was this translation helpful? Give feedback.
While migrating from one database to another is not something that's inherently supported by Wakapi itself, it should still be fairly straightforward. Possible options include:
download_heartbeats
script to dump your heartbeats to a CSV file, which you can then easily import into the MySQL table (just google for "mysql import csv" or something.Note that options 1 and 2 will only copy the raw h…