File tree 9 files changed +78
-0
lines changed
capsule-cli/functions/redis-db
capsule-http/functions/hello-redis-web
9 files changed +78
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ tinygo build -o redis-db.wasm \
3
+ -scheduler=none \
4
+ --no-debug \
5
+ -target wasi ./main.go
6
+ ls -lh * .wasm
7
+
8
+ echo " 📦 Building capsule-cli..."
9
+ cd ../..
10
+ go build -ldflags=" -s -w" -o capsule
11
+ ls -lh capsule
12
+ mv capsule ./functions/redis-db
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ func main() {
12
12
// Handle function
13
13
func Handle (params []byte ) ([]byte , error ) {
14
14
15
+ capsule .RedisSet ("one" , []byte ("👋" ))
15
16
capsule .RedisSet ("one" , []byte ("👋" ))
16
17
capsule .RedisSet ("two" , []byte ("hello" ))
17
18
capsule .RedisSet ("three" , []byte ("world" ))
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ REDIS_URI=" " \
3
+ ./capsule --wasm=./redis-db.wasm
4
+
Original file line number Diff line number Diff line change
1
+ capsule-http- *
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ tinygo build -o hello-redis-web.wasm \
3
+ -scheduler=none \
4
+ --no-debug \
5
+ -target wasi ./main.go
6
+ ls -lh * .wasm
7
+
8
+ echo " 📦 Building capsule-http..."
9
+ cd ../..
10
+ go build -ldflags=" -s -w" -o capsule-http
11
+ ls -lh capsule-http
12
+ mv capsule-http ./functions/hello-redis-web
Original file line number Diff line number Diff line change
1
+ module hello-redis-web
2
+
3
+ go 1.20
4
+
5
+ require github.com/bots-garden/capsule-module-sdk v0.0.6
6
+
7
+ require github.com/valyala/fastjson v1.6.4 // indirect
8
+
9
+ replace github.com/bots-garden/capsule-module-sdk => ../../../../capsule-module-sdk
Original file line number Diff line number Diff line change
1
+ github.com/valyala/fastjson v1.6.4 h1:uAUNq9Z6ymTgGhcm0UynUAB6tlbakBrz6CQFax3BXVQ =
2
+ github.com/valyala/fastjson v1.6.4 /go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLrsQns1aXY =
Original file line number Diff line number Diff line change
1
+ // Package main
2
+ package main
3
+
4
+ import (
5
+ //"errors"
6
+
7
+ "errors"
8
+
9
+ "github.com/bots-garden/capsule-module-sdk"
10
+ )
11
+
12
+ func main () {
13
+
14
+ capsule .SetHandleHTTP (func (param capsule.HTTPRequest ) (capsule.HTTPResponse , error ) {
15
+
16
+ // get values from Redis
17
+ message , errMsg := capsule .RedisGet ("message" )
18
+ xHandle , errHandle := capsule .RedisGet ("x_handle" )
19
+ errs := errors .Join (errMsg , errHandle )
20
+
21
+ if errs != nil {
22
+ capsule .Log ("😡 " + errs .Error ())
23
+ }
24
+
25
+ response := capsule.HTTPResponse {
26
+ JSONBody : `{"message": "` + string (message ) + `", "xHandle": "` + string (xHandle ) + `"}` ,
27
+ Headers : `{"Content-Type": "application/json; charset=utf-8"}` ,
28
+ StatusCode : 200 ,
29
+ }
30
+
31
+ return response , errs
32
+
33
+ })
34
+ }
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ REDIS_URI=" " \
3
+ ./capsule-http --wasm=./hello-redis-web.wasm --httpPort=8080
You can’t perform that action at this time.
0 commit comments