Skip to content

Commit

Permalink
Merge branch 'master' into fix-goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
metrue authored Oct 24, 2023
2 parents 91c13d3 + 7d111e1 commit 78ff7b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Poor man's function as a service.
[![Go Report Card](https://goreportcard.com/badge/github.com/metrue/fx?style=flat-square)](https://goreportcard.com/report/github.com/metrue/fx)
[![Go Doc](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](http://godoc.org/github.com/metrue/fx)
![visitors](https://visitor-badge.glitch.me/badge?page_id=https://github.com/metrue/fx)
![liscense](https://img.shields.io/github/license/metrue/fx.svg)
![license](https://img.shields.io/github/license/metrue/fx.svg)
[![Release](https://img.shields.io/github/release/metrue/fx.svg?style=flat-square)](https://github.com/metrue/fx/releases/latest)

## Table of Contents
Expand Down
2 changes: 1 addition & 1 deletion examples/functions/JavaScript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = (ctx) => {
then deploy it with `fx up` command,

```shell
$ fx up -p 8080:3000 func.js
$ fx up -p 8080 func.js
```

test it using `curl`
Expand Down
2 changes: 1 addition & 1 deletion examples/functions/Rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $ fx up -p 8080 func.rs
test it using `curl`

```shell
$ curl -X 'POST' --header 'Content-Type: application/json' --data '{"a":1,"b":1}' '0.0.0.0:3000'
$ curl -X 'POST' --header 'Content-Type: application/json' --data '{"a":1,"b":1}' '0.0.0.0:8080'

HTTP/1.1 200 OK
Content-Length: 12
Expand Down

0 comments on commit 78ff7b5

Please sign in to comment.