Skip to content

Commit

Permalink
Add mu-script to execute import from Kimai
Browse files Browse the repository at this point in the history
Co-author: @erikap
  • Loading branch information
madnificent committed Dec 23, 2024
1 parent 1b4fbf4 commit a583925
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
18 changes: 18 additions & 0 deletions scripts/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "0.1",
"scripts": [
{
"documentation": {
"command": "from-kimai",
"description": "Syncs customer projects and users from Kimai",
"arguments": []
},
"environment": {
"image": "alpine/curl",
"interactive": false,
"script": "from-kimai/run.sh",
"join_networks": true
}
}
]
}
8 changes: 8 additions & 0 deletions scripts/from-kimai/run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh
echo "Import accounts from Kimai"
curl -X POST http://kimai-sync/sync-from-kimai/accounts
echo "Import customers from Kimai"
curl -X POST http://kimai-sync/sync-from-kimai/customers
echo "Import projects and activities (our tasks) from Kimai"
curl -X POST http://kimai-sync/sync-from-kimai/tasks
echo "DONE"

0 comments on commit a583925

Please sign in to comment.