pluto icon indicating copy to clipboard operation
pluto copied to clipboard

Pluto provides a unified programming interface that allows you to seamlessly tap into cloud capabilities and develop your cloud and AI applications.

Results 34 pluto issues
Sort by recently updated
recently updated
newest added

```typescript import { MD5 } from 'crypto-js'; import { Bucket, Function } from "@plutolang/pluto"; const inputBucket = new Bucket("articles", { exists: true // Don't try to create this bucket when...

![Pluto 2024](https://github.com/pluto-lang/pluto/assets/20160766/6b872e8f-67d3-4dce-a480-df873c66df8c) Annual Goal: Increase Pluto's Visibility 1. Individual Developer Outreach: Bring Pluto to individual developers' attention and make it a preferred option for cloud development. 2. Acquiring Customers through...

## Objective To meet requirements such as cost control and global network configurations, there is a need for a method to modify the generated IaC code. These types of requirements...

enhancement

In the application, there may be a need to access data from external sources, such as retrieving environment variables or reading local files. If the data is only going to...

bug

There may be some capabilities that need to be supported for production usage. - [ ] Debugging capability. Allow developers to identify and troubleshoot issues that occur online, guiding them...

enhancement

Enable the unit testing feature, allowing users to select either a simulator or real runtime as their testing environment. Testing in the real runtime helps prevent issues where code functions...

enhancement

After merging pull request #81, we have achieved basic support for AliCloud, including ApiGateway as a router and FC as a FnResource. However, we acknowledge that there is still a...

good first issue
help wanted
sdk

Currently, the Pluto deducer wraps each function defined in the arguments of the cloud resource handler function and treats it as a lambda resource. However, if a user tries to...

enhancement
deducer
generator

At present, the Pluto deducer lacks the capability to analyze and track the locations of accessed variables. Consequently, when a lambda function accesses a variable beyond its own scope, said...

enhancement
deducer
generator
sdk

Currently, Pluto does not support accessing resource variables that have been renamed. ```typescript import { Router, HttpRequest, HttpResponse, Queue } from "@plutolang/pluto"; const router = new Router("router"); const queue =...

deducer
generator