-
Install Backend Dependencies
- Navigate to the
backend-no-authdirectory and install the necessary dependencies: - Rename the
.env.examplefile to.envin the backend directory.
cd backend-no-auth npm install npm run dev - Navigate to the
-
Install Frontend Dependencies & Start the App
Navigate to the frontend directory, install dependencies, and start the application:cd frontend npm install npm run dev -
Access the App
Open your browser and visit: http://localhost:3000
- Stop the server, if it is running.
- Navigate to the
backend-authdirectory and install the necessary dependencies: - Rename the
.env.examplefile to.envin the backend directory.
cd backend-auth
npm install
npm run dev- Stop the server, if it is running.
- Navigate to the
backend-protecteddirectory and install the necessary dependencies: - Rename the
.env.examplefile to.envin the backend directory.
cd backend-protected
npm install
npm run dev