I Built a Self-Hosted Google Translate

I Built a Self-Hosted Google Translate

Theo in Tech

589 subscribers

95 views Nov 3, 2024

Book a call: dev.sunmoon.co | Cal.com

Here is a Self Hosted Cloud Translation API you can replicate by just using Docker and a minimum 2 cores machine.

version: '3.8'
services:
  libretranslate:
    image: libretranslate/libretranslate
    tty: true
    stdin_open: true
    ports:
      - '5001:5000'
    environment:
      - LT_SSL=true

Example request: https://{domain}/translate?q=hello&source=auto&target=es

1 Like

Always nice to see coverage of the project on YouTube. :clap:

1 Like