MULTILINGO is a language learning application with separate backend and frontend components. Follow the steps below to set up the backend and frontend.
-
Install
pnpm
using PowerShell:iwr https://get.pnpm.io/install.ps1 -useb | iex
-
Navigate to the
backend
folder:cd backend
-
Install project dependencies:
pnpm install
-
Apply database migrations:
pnpm prisma db push
-
Start the backend server:
node index.js
-
Install project dependencies. From the project root, navigate to the
frontend
folder:cd frontend
-
Install dependencies using Yarn:
yarn
-
Start the development server:
yarn dev