diff --git a/couchbase/.env.example b/couchbase/.env.example new file mode 100644 index 0000000..5a27ba6 --- /dev/null +++ b/couchbase/.env.example @@ -0,0 +1,6 @@ +COUCHBASE_CONNECTION_STRING=couchbase://localhost +COUCHBASE_USERNAME=your_couchbase_username +COUCHBASE_PASSWORD=your_couchbase_password +COUCHBASE_BUCKET_NAME=couchbase-keepalive +COUCHBASE_SCOPE_NAME=development +COUCHBASE_COLLECTION_NAME=keepalive diff --git a/couchbase/.gitignore b/couchbase/.gitignore index aaadf73..089a213 100644 --- a/couchbase/.gitignore +++ b/couchbase/.gitignore @@ -1,3 +1,7 @@ +.idea + + + # If you prefer the allow list template instead of the deny list, see community template: # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore # diff --git a/couchbase/go.mod b/couchbase/go.mod new file mode 100644 index 0000000..60ce389 --- /dev/null +++ b/couchbase/go.mod @@ -0,0 +1,3 @@ +module github.com/tiennm99/couchbase-keepalive + +go 1.24.10 diff --git a/couchbase/main.go b/couchbase/main.go new file mode 100644 index 0000000..7905807 --- /dev/null +++ b/couchbase/main.go @@ -0,0 +1,5 @@ +package main + +func main() { + +}