Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/.vitepress/theme/components/Services/List.vue
Original file line number Diff line number Diff line change
Expand Up @@ -751,6 +751,13 @@ const services = [
description: 'Virtual whiteboard for sketching hand-drawn like diagrams.',
category: 'Productivity'
},
{
name: 'ElectricSQL',
slug: 'electricsql',
icon: '/docs/images/services/electricsql.svg',
description: 'Sync shape-based subsets of your Postgres data over HTTP',
category: 'Database'
},
{
name: 'Evolution API',
slug: 'evolution-api',
Expand Down
4 changes: 4 additions & 0 deletions docs/public/images/services/electricsql.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/services/all.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ Complete directory of all one-click services available in Coolify, organized by
## Database

- [Autobase](/services/autobase) - Open-source alternative to cloud-managed databases for PostgreSQL (self-hosted DBaaS)
- [ElectricSQL](/services/electricsql) - Sync shape-based subsets of your Postgres data over HTTP
- [NocoDB](/services/nocodb) - Open Source Airtable Alternative
- [PGBackWeb](/services/pgbackweb) - Effortless PostgreSQL backups with a user-friendly web interface
- [Teable](/services/teable) - No-code database built on PostgreSQL
Expand Down
29 changes: 29 additions & 0 deletions docs/services/electricsql.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: "ElectricSQL"
description: "Sync shape-based subsets of your Postgres data over HTTP."
---

# ElectricSQL

<ZoomableImage src="/docs/images/services/electricsql.svg" alt="/ dashboard" />

## What is ElectricSQL?

ElectricSQL allows developers to build fast, modern, collaborative apps without changing their stack

## Notes on deployment

When creating the postgresql database, make sure to enable logical replication: adding `wal_level = logical` to your postgresql config should do it.

## Environment Variables

- SERVICE_URL_ELECTRIC_3000: exposes port 3000 of electricsql: this is where your clients would connect
- DATABASE_URL: url of the postgresql database (with logical replication enabled)
- ELECTRIC_SECRET: secret electricsql will use to authenticate requests (more info [here](https://electric-sql.com/docs/guides/security#api-token))
- ELECTRIC_STORAGE_DIR: electric needs to store some data, cache etc. This is where it'll go
- ELECTRIC_USAGE_REPORTING: allows configuration of anonymous usage data reporting back to [https://electric-sql.com](https://electric-sql.com)

## Links

- [Official website](https://electric-sql.com/.io)
- [GitHub](https://github.com/electric-sql/electric?utm_source=coolify.io)