From root directory, run following command
make up
Install dependencies
make composer-install
Next just run migrate to apply all changes to Database
make migrate
If you made any change domain schema, run diff and again run migrate
make diff
mkdir -p config/jwt
openssl genpkey -out config/jwt/private.pem -aes256 -algorithm rsa -pkeyopt rsa_keygen_bits:4096
openssl pkey -in config/jwt/private.pem -out config/jwt/public.pem -pubout
After this make sure that you have updated JWT_PASSPHRASE
from .env
(.env.local
if exists) value by the new password that you have used for secret generation