diff options
Diffstat (limited to '.devcontainer/mongo/0100-data.js')
| -rw-r--r-- | .devcontainer/mongo/0100-data.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.devcontainer/mongo/0100-data.js b/.devcontainer/mongo/0100-data.js new file mode 100644 index 0000000..dec22ae --- /dev/null +++ b/.devcontainer/mongo/0100-data.js @@ -0,0 +1,16 @@ + +db.createCollection("repository"); +db.repository.insertMany([ + { + organization: "kjhoerr", + name: "ao-coverage", + branches: { + "trunk": { + head: { + commit: "400ab021c92101bc6db1f70fba41e673de7ee14a", + format: "cobertura" + } + } + } + } +]);
\ No newline at end of file |
