mirror of
https://github.com/LukeHagar/Coolify-TypeScript-SDK.git
synced 2025-12-08 04:19:31 +00:00
19 lines
357 B
Markdown
19 lines
357 B
Markdown
<!-- Start SDK Example Usage [usage] -->
|
|
```typescript
|
|
import { Coolify } from "coolify";
|
|
|
|
const coolify = new Coolify({
|
|
bearerAuth: process.env["COOLIFY_BEARER_AUTH"] ?? "",
|
|
});
|
|
|
|
async function run() {
|
|
const result = await coolify.applications.list();
|
|
|
|
// Handle the result
|
|
console.log(result);
|
|
}
|
|
|
|
run();
|
|
|
|
```
|
|
<!-- End SDK Example Usage [usage] --> |