Commit naming convention - conventional commits
make
installeddocker
installed
# Install all dependencies
make update
# Start all services for local development
make nimbus
Note: before running make nimbus
make sure you have environment variable NIMBUS_DEV_ENV_OS
exported. Only values win
, linux
make sense.
To run services on Linux:
make nimbus
# Start backend locally
make be
# Start frontend locally
make fe
To run services on Windows
set NIMBUS_DEV_ENV_OS="win" && make nimbus
make be
make fe