File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -12,24 +12,18 @@ Also, this enables portability of edge functions to those users who want to self
12
12
## How to run locally
13
13
14
14
```
15
- ./run.sh start --dir /path/to/supabase/functions -p 9000
15
+ ./run.sh start --main-service /path/to/supabase/functions -p 9000
16
16
```
17
17
18
18
using Docker:
19
19
20
20
```
21
21
docker build -t edge-runtime .
22
- docker run -it --rm -p 9000:9000 -v /path/to/supabase/functions:/usr/services supabase/edge-runtime start --dir /usr/services
22
+ docker run -it --rm -p 9000:9000 -v /path/to/supabase/functions:/usr/services supabase/edge-runtime start --main-service /usr/services
23
23
```
24
24
25
- ## Architecture
26
-
27
- Server -> Base Worker -> User Function
28
-
29
25
## TODO
30
26
31
- * Check verify-jwt
32
- * handle 404 errors
33
27
* Expose Deno.errors
34
28
* Performance.now() precision tuning
35
29
* Disable SharedArrayBuffers
@@ -44,4 +38,4 @@ Server -> Base Worker -> User Function
44
38
## How to update to a Deno version
45
39
46
40
* Select the Deno version to upgrade and visit its tag on GitHub (eg: https://github.com/denoland/deno/blob/v1.30.3/Cargo.toml )
47
- * Open the ` Cargo.toml ` at the root of of the repo and modify all ` deno_* ` modules to match to the Deno's repo .
41
+ * Open the ` Cargo.toml ` at the root of of this repo and modify all ` deno_* ` modules to match to the selected tag of Deno .
You can’t perform that action at this time.
0 commit comments