Handle your software localization with a translation tool built from the ground up for developers. This solution prioritizes a straightforward, no-fuss approach to managing multiple languages in your projects. As a 100% open-source platform, it offers complete transparency and the freedom to customize it to your specific needs.
Get started quickly with a system designed for easy deployment, allowing you to host it on your own infrastructure with minimal effort. It provides a robust set of features to manage the entire translation workflow without unnecessary complexity. This is an ideal solution for teams looking for:
services:
accent:
image: mirego/accent:latest
ports:
- "4000:4000"
environment:
- DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}
- SECRET_KEY_BASE=${SECRET_KEY_BASE}
- PORT=4000
depends_on:
- db
restart: unless-stopped
db:
image: postgres:14-alpine
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
volumes:
- ./data/postgres:/var/lib/postgresql/data
restart: unless-stoppedPOSTGRES_USER=accent
POSTGRES_PASSWORD=your_super_secret_database_password
POSTGRES_DB=accent_production
SECRET_KEY_BASE=your_super_secret_key_base_string_here_must_be_long_and_secureAuto-fetched about 23 hours ago
Auto-fetched about 23 hours ago