-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mu-script to execute import from Kimai
Co-author: @erikap
- Loading branch information
1 parent
1b4fbf4
commit a583925
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |