Usage
Basic Usage
Learn how to use nuxt-coolify to interact with your Coolify instance.
Example
This guide demonstrates how to make API calls to your Coolify instance using Nuxt's useFetch
composable.
Fetching Instances
Here's a basic example of how to fetch your Coolify instances:
<script setup lang="ts">
const {
data: instances,
status,
error,
refresh: refreshInstanceList
} = useFetch('/api/_v1/_coolify/instances')
</script>
<template>
<div>
<h2>Instances</h2>
<div v-if="status === 'pending'">
Loading Instances...
</div>
<div v-else-if="error">
Error: {{ error.message }}
</div>
<div v-else>
<pre>{{ instances }}</pre>
</div>
<button @click="refreshInstanceList">
Refresh Instances
</button>
</div>
</template>
Available Endpoints
The module provides several API endpoints that map to Coolify's API. Here are some of the available endpoints:
/api/_v1/_coolify/instances
- Get all instances/api/_v1/_coolify/healthcheck
- Check Coolify server health
You can find the complete API documentation on Coolify's API Reference page.
Next Steps
Join the Coolify Discord community to get help, share your experience, and stay updated with the latest developments.