sidecar icon indicating copy to clipboard operation
sidecar copied to clipboard

Deploy and execute AWS Lambda functions from your Laravel application.

Results 53 sidecar issues
Sort by recently updated
recently updated
newest added

I have a python script like this: ``` model = None def get_model(): global model if model is not None: return model model = SentenceTransformer('all-MiniLM-L6-v2') return model def lambda_handler(event, context):...

I'm running a Sidecar function that uses a container image on ECR, and Sidecar doesn't seem to be able to detect that I've built and pushed up a new version...

We need to add a `sidecar:logs` command to pull logs from CloudWatch Logs. I've already added the CloudWatchLogs client, just need to write the command.

enhancement

We have a requirement to add tagging (AWS tags) to sort of label our lambda functions. I think this is mostly for billing purposes, as different teams create lambdas and...

Calling prefix() independently of nameWithPrefix() results in a function prefix which has spaces in it, which is not valid for a Lambda function name.

Hi @aarondfrancis! Something strange occurs when the activate command is running during a deployment in Laravel Vapor. When I run this command locally, it's super fast, but on Vapor it...

Due to using a `.` in your `APP_NAME` value we were encountering issues when deploying our new versions. In order to work around this, I'm proposing to change how the...

In addition to this already closed issue: https://github.com/hammerstonedev/sidecar/issues/20, using a pipe (eg. `APP_NAME="Vriend van de Show | Local"`) also breaks the creation of AWS Lambda functions.

Is it possible to deploy a function to multiple regions ? And call that function with a region as argument ? Thanks.