serverless-functions
Here are 214 public repositories matching this topic...
Writing a function takes a lot of steps. In the case of a Java function, a Maven project needs to be created and the dependencies need to be added. For other languages, there is a simular experience.
After writing the function, specs need to be generated. These include a Package, Function and a trigger. Names need to match in multiple places, so a lot could go wrong. Below is a basic example fo
The typescript runtime was recently added to openwhisk but we do not yet have docs for the runtime and it is missing from runtimes.json.
We need a doc like https://github.com/apache/incubator-openwhisk/blob/master/docs/actions-nodejs.md for typescript functions.
Adding the runtime to the runtime manifest can be done per https://github.com/apache/openwhisk/blob/master/docs/actions-new.md#the-
this will very quickly get out of hand if we allow it, i realize we don't have principles written down anywhere but to date one of them has been that binaries 'just work' without having to do any configuration. currently a user must set FN_MAX_REQUEST_SIZE, FN_MAX_RESPONSE_SIZE -- neither of these should be required to run.
test case:
cd tests/fn-system-tests/
go test -v
this
I'm trying to follow the quick guide, I've done these steps:
serverless create -u https://github.com/adieuadieu/serverless-chrome/tree/master/examples/serverless-framework/awsexport AWS_PROFILE=serverlessnpm run deploy
However at point 3, I'm not in the right folder am I?
If I cd aws and the run npm run deploy I get an error:
Serverless Error ---------------
DEPRECATED: Curated list of resources related to serverless computing and serverless architectures.
-
Updated
Jan 6, 2020
Old examples of ZEIT Now projects you can deploy yourself
-
Updated
Jan 10, 2020
λ A curated list of awesome AWS Lambda Layers.
-
Updated
Jun 20, 2020
-
Updated
May 16, 2020 - Vue
Need to agree on:
- which docs?
- streaming: what does it mean? trivial? stateful (ie something that couldn't be achieved w/o streaming)?
- should all the languages (currently Java+node) use the same business example?
Shorten URLs using invisible spaces.
-
Updated
Mar 2, 2020 - JavaScript
JS Docs aren't extracted when using exporting default arrow functions
/**
* This is an example description for an example function.
*
* @param foo - Example describing string `foo`.
* @returns Description of return value.
*/
export default async (foo: string): Promise<string> => {
return JSON.stringify({ foo })
}Method description and params are missing from outpu
A common user error is to deploy the helm chart without first labeling at least one node with openwhisk-role=invoker. To make this error more obvious, we should probably add a job to the Helm chart whose sole purpose is to check that there is at least one labeled invoker node and get stuck in a more obvious manner when there are none.
Improve the readme.md documentation before 1.0 release.
- improve configuration section (specifically concerning outputs)
- improve documentation on usage of lib/sharp tarball
- add sample/example configuration files in
~/examplesincluding how to setup with a single bucket, single existing bucket, etc. - add a bit about what IAM permissions are required to deploy with Serv
Serverless function that uses the stripe api for a checkout process in a Vue application
-
Updated
Dec 5, 2017 - JavaScript
Enumerate Lambda functions across all regions with useful metadata
-
Updated
Mar 12, 2020 - Python
I'm trying to deploy a service with this plugin to a local minikube cluster, if I deploy the service without any kind of event binded to the handler the deploy works perfectly, but If I try to specify an http event to the handler I get this error:
 with push notification in react native with user sign in/up for personal and anonymous for Global Chat with pusing user to Friendlist for the user to choose friend to chat with. Youtube:
-
Updated
Sep 19, 2018 - JavaScript
Smart security camera with Raspberry Pi Zero and OpenFaaS
-
Updated
Mar 16, 2019 - Python
This PR that added the "concurrency" flag to the CLI was this one:
apache/openwhisk-cli#383 (edited)
The flag was added to the CLI command flag structs here:
https://github.com/apache/openwhisk-cli/blob/master/commands/flags.go
wskdeploy should support this to maintain CLI parity.
SanFran - Serverless Functions for Kubernetes
-
Updated
Feb 23, 2019 - Go
FogFlow is a standard-based IoT fog computing framework that supports serverless computing and edge computing with advanced programming models
-
Updated
Jun 22, 2020 - Go
currently you have to run composer twice, once to generate the function code and again to generate the ast (needed for k/o-ui visualization).
it would be convenient to run compose once and specify two different files for output.
gcf.cr provides serverless execution and deployment of crystal language code in Google Cloud Functions
-
Updated
May 12, 2019 - Crystal
Improve this page
Add a description, image, and links to the serverless-functions topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the serverless-functions topic, visit your repo's landing page and select "manage topics."


Move all Dockerfile samples to non-root user
Expected Behaviour
As an OpenFaaS end-user, I want to run all samples on my OpenFaaS cluster, even with the new non-root feature enabled.
Current Behaviour