Running the dev environment

I’m new at Baserow. I’d like to run Baserow in dev mode and I used this link to do so.

But, it could not connect the ‘db’ postgres and there was an error message as following picture.


so, I have no idea what to do.

Hi @abdolsattar,
thanks for reaching out.
From the error, it seems your db password is not correct.
Regards,
Bruno

Thanks,
Yes that’s true. but what is this password? I mean, where can I set the db password?

You can find where to set env vars in documentation:
https://baserow.io/docs/installation%2Finstall-with-docker-compose

How do you run it? What environment variables have you configured? Do you use Linux subsystem for Windows?

Hi @petrs,
thanks for your reply.
initially, I wanted to run dev through this command ./dev.sh and I got the error message like “find: The argument to -user should not be empty”.
Then I used this link Cannot run the app in dev mode and by using this command cp .env.example .env
the below environment variables were set:
SECRET_KEY=baserow
DATABASE_PASSWORD=baserow
REDIS_PASSWORD=baserow
BASEROW_PUBLIC_URL=http://localhost
BASEROW_CADDY_ADDRESSES=:80
WEB_FRONTEND_PORT=80
HOST_PUBLISH_IP=0.0.0.0

EMAIL_SMTP=
EMAIL_SMTP_HOST=
EMAIL_SMTP_PORT=
EMAIL_SMTP_USE_TLS=
EMAIL_SMTP_USER=
EMAIL_SMTP_PASSWORD=
FROM_EMAIL=no-reply@localhost

After that I used this command:
docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build

but the above figure error was shown.

My struggling is what the database password is? I mean how should I set it?
thanks.