projects-app/.gitapp/manifest.json

56 lines
1.1 KiB
JSON

{
"name": "pocketbase-lite",
"version": "0.1.0",
"paths": {
"data": "collections/",
"media": "media/",
"indexes": ".gitapp/indexes/"
},
"schemas": [
{
"id": "users",
"file": "schemas/users.json",
"glob": "collections/users/*.json"
},
{
"id": "labels",
"file": "schemas/labels.json",
"glob": "collections/labels/*.json"
},
{
"id": "projects",
"file": "schemas/projects.json",
"glob": "collections/projects/*.json"
},
{
"id": "sprints",
"file": "schemas/sprints.json",
"glob": "collections/sprints/*.json"
},
{
"id": "issues",
"file": "schemas/issues.json",
"glob": "collections/issues/*.json"
},
{
"id": "comments",
"file": "schemas/comments.json",
"glob": "collections/comments/*.json"
}
],
"operations": [
"create-record",
"update-record",
"delete-record"
],
"policies": {
"roles": [
"viewer",
"editor"
],
"acl": null
},
"lfs": {
"enabled": false
}
}