From 98b3b551c143ba1f92a6385f4e1cf819a814520e Mon Sep 17 00:00:00 2001 From: Daniel Lo Nigro Date: Thu, 20 Nov 2025 21:08:40 -0800 Subject: [PATCH] Update commands in contributing docs --- CONTRIBUTING.md | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index af05add32..2fe657ce4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -54,7 +54,7 @@ pnpm install - Run all required docker containers in the development, we already configured all containers under `docker-compose.yml`. ``` -docker-compose up -d +docker compose up -d ``` Wait some seconds, and hit `docker-compose ps` and you should see the same result below. @@ -75,7 +75,7 @@ pnpm run build:server - Run the database migration for system database. ``` -node packages/server/build/commands.js system:migrate:latest +pnpm run system:migrate:latest ``` And you should get something like that. @@ -84,10 +84,10 @@ And you should get something like that. Batch 1 run: 6 migrations ``` -- Next, start the webapp application. +- Next, start the server. ``` -pnpm run dev:server +pnpm run server:start ``` **[`^top^`](#)** @@ -96,12 +96,6 @@ pnpm run dev:server ## Contribute to Frontend -- Clone the `bigcapital` repository and cd into `bigcapital` directory. - -``` -git clone https://github.com/bigcapital/bigcapital.git && cd bigcaptial -``` - - Install all npm dependencies of the monorepo, you don't have to change directory to the `frontend` package. just hit that command and will install all packages across all application. ``` @@ -138,4 +132,4 @@ There are many other ways to get involved with the community and to participate Again, Feel free to ping us on [`#contributing`](https://discord.com/invite/c8nPBJafeb) on our Discord community if you need any help on this :) -Thank You! \ No newline at end of file +Thank You!