From d7c09bcb6a214a53d9fab3b0a2a7d10b93222bb0 Mon Sep 17 00:00:00 2001 From: Bruno Bernardino Date: Mon, 29 Dec 2025 08:27:38 +0000 Subject: [PATCH] Update readme with preview command --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9739f90..c05b2e4 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ These are the amazing entities or individuals who are sponsoring this project fo ```sh docker compose -f docker-compose.dev.yml up # (optional) runs docker with postgres, locally make migrate-db # runs any missing database migrations -make preview # runs the app in development mode +make preview # runs the app in production mode make format # (optional) formats the code (if you're interested in contributing) make test # (optional) runs tests (if you're interested in contributing) ``` @@ -80,6 +80,7 @@ make test # (optional) runs tests (if you're interested in contributing) ### Other less-used commands (mostly for development) ```sh +make start # runs the app in development mode make exec-db # runs psql inside the postgres container, useful for running direct development queries like `DROP DATABASE "bewcloud"; CREATE DATABASE "bewcloud";` make build # generates all static files for production deploy ```