feat(core): init

This commit is contained in:
2025-11-24 20:00:20 +07:00
parent de29516233
commit a7b10b80be
4 changed files with 18 additions and 0 deletions
+6
View File
@@ -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
+4
View File
@@ -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
#
+3
View File
@@ -0,0 +1,3 @@
module github.com/tiennm99/couchbase-keepalive
go 1.24.10
+5
View File
@@ -0,0 +1,5 @@
package main
func main() {
}