Hello everyone,
I’m trying to set up a rasa chatbot example with Docker. The repo I’m using is here: https://github.com/xtrc/react-mcmearty
I wanted to save data in a tracker strore (postgresql) the action_server is a different container. The issue I’m facing is that I can’t connect to the tracker store because of the duplicate key now being set in endpoints.yml. Below the output of my endpoint.yml file. Is it even possible like this?
# This file contains the different endpoints your bot can use
# Server where the models are pulled from.
# https://rasa.com/docs/rasa/user-guide/running-the-server/#fetching-models-from-a-server
#models:
# url: http://my-server.com/models/default_core@latest
# wait_time_between_pulls: 10 # [optional](default: 100
# Server which runs your custom actions.
# https://rasa.com/docs/rasa/core/actions/#custom-actions
#action_endpoint:
url: "http://action_server:5055/webhook
# Tracker store which is used to store the conversations.
# By default the conversations are stored in memory.
# https://rasa.com/docs/rasa/api/tracker-stores
#tracker_store:
# type: redis
# url: <host of the redis instance, e.g. localhost>
# port: <port of your redis instance, usually 6379>
# db: <number of your database within redis, e.g. 0>
# password: <password used for authentication>
# use_ssl: <whether or not the communication is encrypted, default false
#tracker_store:
type: SQL
url: "db:5432"
db: secret
username: postgres
password:
# Event broker which all conversation events should be streamed to.
# https://rasa.com/docs/rasa/api/event-brokers
#event_broker:
# url: localhost
# username: username
# password: password
# queue: queue