-
Notifications
You must be signed in to change notification settings - Fork 2
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
Support for PostgreSQL #35
Comments
Hi @steinbrueckri ! Thanks for your interest in theo! |
@macno Thx for the feedback, yes of cause. I'm very interested in the project and happy to help you. |
@steinbrueckri here we are:
all you need is to set these is a simple example using docker-compose to start testing: version: '3.1'
services:
db:
image: postgres:14
environment:
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
cache:
image: redis:6
theo:
image: macno77/theo:1.4.0-beta.0-postgres-redis
environment:
DB_ENGINE: postgres
DB_HOST: db
DB_USER: ${POSTGRES_USER}
DB_PASSWORD: ${POSTGRES_PASSWORD}
DB_NAME: ${POSTGRES_DB}
ADMIN_TOKEN: ${ADMIN_TOKEN}
CLIENT_TOKENS: ${CLIENT_TOKENS}
CACHE_ENABLED: redis
CACHE_URI: redis://cache:6379
DB_CONN_MAX_RETRY: 30
ports:
- 9100:9100
depends_on:
- cache
- db |
No description provided.
The text was updated successfully, but these errors were encountered: