initial commit

This commit is contained in:
Luke Hagar
2025-09-26 02:33:10 +00:00
commit f7b542efbf
928 changed files with 113882 additions and 0 deletions

18
USAGE.md Normal file
View File

@@ -0,0 +1,18 @@
<!-- Start SDK Example Usage [usage] -->
```typescript
import { Dokploy } from "dokploy";
const dokploy = new Dokploy({
authorization: process.env["DOKPLOY_AUTHORIZATION"] ?? "",
});
async function run() {
const result = await dokploy.admin.getOne();
console.log(result);
}
run();
```
<!-- End SDK Example Usage [usage] -->