Add the following line to your /etc/hosts file:
127.0.0.1 baco.localhostStart the database container using Docker:
docker compose up database -dUse Prisma to push your schema to the database:
npx prisma db pushSeed your database with initial data:
npx prisma db seedCreate a secure secret key for symmetric encryption:
openssl rand -base64 32Add the generated secret key to your .env file:
ACCESS_TOKEN_SECRET_KEY=your_generated_secret_key
REFRESH_TOKEN_SECRET_KEY=another_generated_secret_keynpm i # Install dependencies
npx nx serve server # Start the server
npx nx serve web # Start the web client
npx prisma generate # Generate Prisma Client
npx lingui extract # Extract messages
npx lingui compile # Compile messages