Connection issue while running Dev Environment with Docker

Hi,

I’ve tried for hours to run properly Dev environment to test for plugin dev and installation but raised over many issues.
I run backend on 8001 and frontend on 3001 to avoid conflicts locally with other projects so I had to change .env.docker.dev for example.

connect ECONNREFUSED 192.168.16.12:8001

Stack Trace

  • In App

        commit('SET_LOADED', true)
      },
      async update({ commit, getters }, values) {
        const { $client } = this
        const oldValues = clone(getters.get)
        commit('UPDATE_SETTINGS', values)
    
        try {
          await SettingsService($client).update(values)
        } catch (e) {
          commit('SET_SETTINGS', oldValues)
    

Hey @LECARROU

There are few places where it’s not easy to change frontend/backend ports without code changes. If you want to experiment with dev environment (which is not recommended) I’d suggest stop other services that can occupy those ports for the time that you use baserow.

Hi Przemek,

thank for replying.
This is exactly what I have done.