Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add YugabyteDB (Open Source, PostgreSQL compatible Distributed SQL) #26

Merged
merged 1 commit into from
Jul 13, 2023

Conversation

FranckPachot
Copy link
Contributor

Hi, I've tested how it works with YugabyteDB (an Open Source, PostgreSQL compatible Distributed SQL which uses a fork of PostgreSQL for the query layer to provide the same features, behavior, catalog views, aso) and it works so would be good to add it in the README

For information, here is the docker compose I used to test:

services:
  web:
    image: lovasoa/sqlpage
    ports:
      - "8080:8080"
    volumes:
      - .:/var/www
    depends_on:
      - db
    environment:
      DATABASE_URL: postgres://root:secret@db:5433/sqlpage
  db: # The DB environment variable can be set to "mariadb" or "postgres" to test the code with different databases
    ports:
      - "5433:5433"
      - "15433:15433"
    image: yugabytedb/yugabyte
    command: yugabyted start --background=false
    environment:
      YSQL_USER: root
      YSQL_DB: sqlpage
      YSQL_PASSWORD: secret

@lovasoa
Copy link
Collaborator

lovasoa commented Jul 12, 2023

Hi ! I didn't know about yugabytedb, it sounds really like a really powerful db !

I see you are from Switzerland; what would you say about an "échange de bons procédés" ? I'll give you a shout-out in SQLPage's README if you add a mention of SQLPage in Yugabyte's README !

@FranckPachot
Copy link
Contributor Author

Sure, you can expect a blog post and probably being listed in the ecosystem Doc.

@lovasoa
Copy link
Collaborator

lovasoa commented Jul 13, 2023

Great, that works for me 🙂 Thanks !

@lovasoa lovasoa merged commit e4ffd64 into sqlpage:main Jul 13, 2023
lovasoa added a commit that referenced this pull request Nov 5, 2023
Add YugabyteDB (Open Source, PostgreSQL compatible Distributed SQL)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants