GoLangApp-Appwrite
Go Lang Application with Appwrite for Dev +Appwrite Hackathon
Posted on May 11, 2022
A simple Application with Go Language and AppWrite.🐋
run the script
/bin/sh run.sh
To Modify
You need to to modify env vars set in run.sh using your own
How it works ?
It project use the appwrite provided apis. Fow now, only database endpoint are implement in this project.
Is required to set payload for create collection in the format below
{
"data": {
"key": "value3"
}
}
The data key is mandatory. key is the registered key in Collection.CollectionCreateInputRule.
If you modify the value of key, modify it in the create collection payload too.
inputRule := Collection.CollectionCreateInputRule{
Label: "label",
Key: "myKey",
Type: "text",
Default: "no set",
Required: false,
Array: false,
}
{
"data": {
"myKey": "value4"
}
}
Wacky Wildcards
Go Lang Application with Appwrite for Dev +Appwrite Hackathon
See you guys!!🤗
Posted on May 11, 2022
Sign up to receive the latest update from our blog.