Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ functions-framework --target hello --debug
* Running on http://0.0.0.0:8080/ (Press CTRL+C to quit)
```

(You can also use `functions-framework-python` if you potentially have multiple
language frameworks installed).

Send requests to this function using `curl` from another terminal window:

```sh
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,11 @@
],
entry_points={
"console_scripts": [
"ff=functions_framework._cli:_cli",
"functions-framework=functions_framework._cli:_cli",
"functions_framework=functions_framework._cli:_cli",
"ff=functions_framework._cli:_cli",
"functions-framework-python=functions_framework._cli:_cli",
"functions_framework_python=functions_framework._cli:_cli",
]
},
)