-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
43 lines (34 loc) · 1.07 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package main
import (
"log"
"os"
"github.com/appwrite/sdk-for-go/appwrite"
"github.com/appwrite/sdk-for-go/client"
"github.com/appwrite/sdk-for-go/databases"
"github.com/joho/godotenv"
"github.com/thejunghare/dem-admin/pkg"
)
var (
appwrite_client client.Client
appwrite_database *databases.Databases
json_file_path string
)
func main() {
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading .env file")
}
appwrite_project_id := os.Getenv("APPWRITE_PROJECT")
appwrite_project_api_key := os.Getenv("APPWRITE_API_KEY")
database_id := os.Getenv("DATABASE_ID")
collection_id := os.Getenv("TEST_ID") //test collection
//json_file_path = "./khopoli_all.json"
appwrite_client = appwrite.NewClient(
appwrite.WithProject(appwrite_project_id),
appwrite.WithKey(appwrite_project_api_key),
)
appwrite_database = appwrite.NewDatabases(appwrite_client)
// pkg.DeleteDocs(appwrite_database, database_id, collection_id)
//pkg.List(appwrite_database, database_id, collection_id)
pkg.CreateDocs(appwrite_database, database_id, collection_id, json_file_path)
}