- Run the backend server in development mode (without compilation):
make dev
- Run the backend server with compilation:
make build
make run
- Install dependencies:
bun install
- Run the frontend server:
make client
- Build and run the frontend server:
make client-build
make client-start
- Make sure to set the correct environment variables in the
.env
file. - Make sure to run the backend server before running the frontend server.
- Make sure to run
make build
before runningmake run
for the backend server. - Make sure to run
make client-build
before runningmake client-start
for the frontend server.