Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: initial documentation #6

Merged
merged 1 commit into from
Sep 26, 2024
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
29 changes: 28 additions & 1 deletion cmd/fhttp/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
# Function HTTP Test Command

fhttp is a command which illustrates how the func-python library
fhttp is a command which illustrates how the func-python library middleware
wraps a function and exposes it as a service. Useful for development.

This is an example usage of the Functions HTTP middleware.

To see the actual middleware which is used when building a Python Function,
see the [Functions Python Scaffolding](https://github.com/knative/func/tree/main/templates/python/http)

## Running

Create a local virtual environment if it does not already exist:
```bash
python3 -m venv venv
```
Activate the virtual environment:
```bash
source ./venv/bin/activate
```
Ensure the requirements are installed:
```bash
pip install -r requirements.txt
```
Run the application:
```bash
python3 ./main.py
```
use `^C` to stop the application

To Deactivate the virtual environment:
```bash
deactivate
22 changes: 22 additions & 0 deletions http/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Functions Python Middleware

An ASGI Application which will serve a Function. The ASGI application
is the middleware.

The middleware implements lifecycle events such as "start" and "stop", health
checks for readiness and liveness, and a handler for HTTP requests.

The function is expected to implement "handle", and the middleware will
raise an error if the function does not implement this method. Start and stop
are optional. Readiness and liveness are also optional, with the middleware
providing default implementations.

Signals are handled by the ASGI server implementation hypercorn and initiate
shutdown of the service.

## Usage

To see a usage example, refer to cmd/fhttp.



Loading