diff --git a/samples/sailsjs-postgres/README.md b/samples/sailsjs-postgres/README.md index 4b0957bf..3171436a 100644 --- a/samples/sailsjs-postgres/README.md +++ b/samples/sailsjs-postgres/README.md @@ -20,10 +20,12 @@ Sailsjs with Defang and connect it to a Postgres database. Furthermore, we emons ## Development -For development, we use a Postgres container. The Postgres container is defined in the `compose.dev.yaml` file. The Hasura container is defined in the `compose.yaml` file, with some overrides in the `compose.dev.yaml` file so it can correctly connect to the development database container. To start your own, please have the env variables, POSTGRES_USER, POSTGRES_PASSWORD, POSTGRES_DB, and SESSION_SECRET ready. +For development, we use a Postgres container. The Postgres container is defined in the `compose.dev.yaml` file. The Neon postgres container is defined in the `compose.yaml` file, with some overrides in the `compose.dev.yaml` file so it correctly connects to the development database container. To start your own, please have the env variables, `POSTGRES_USER`, `POSTGRES_PASSWORD`, `POSTGRES_DB`, and `SESSION_SECRET` ready. To start the development environment, run: +``` docker compose -f compose.dev.yaml up --build +``` ---