### Start the Frontend Webapp Source: https://github.com/bigcapitalhq/bigcapital/blob/develop/CONTRIBUTING.md Start the frontend web application after installing monorepo dependencies. ```bash pnpm run dev:webapp ``` -------------------------------- ### Copy .env.example to .env Source: https://github.com/bigcapitalhq/bigcapital/blob/develop/CONTRIBUTING.md Copy the example environment file to create your own. ```bash cp .env.example .env ``` -------------------------------- ### Start the Backend Server Source: https://github.com/bigcapitalhq/bigcapital/blob/develop/CONTRIBUTING.md Start the backend server after completing build and migration steps. ```bash pnpm run server:start ``` -------------------------------- ### Install Monorepo Dependencies with pnpm Source: https://github.com/bigcapitalhq/bigcapital/blob/develop/CONTRIBUTING.md Install all npm dependencies for the monorepo from the root directory. ```bash pnpm install ``` -------------------------------- ### Start Docker Compose Development Environment Source: https://github.com/bigcapitalhq/bigcapital/blob/develop/CONTRIBUTING.md Run all required docker containers for development using the docker-compose.yml file. ```bash docker compose up -d ``` -------------------------------- ### Build the Server Application Source: https://github.com/bigcapitalhq/bigcapital/blob/develop/CONTRIBUTING.md Build the server application before running CLI commands like database migrations. ```bash pnpm run build:server ``` -------------------------------- ### Run Latest Database Migrations Source: https://github.com/bigcapitalhq/bigcapital/blob/develop/CONTRIBUTING.md Execute the latest database migrations for the system database. ```bash pnpm run system:migrate:latest ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.