This is a notes app that allows users to authenticate and manage their notes. It is built using React and Tailwind CSS. This frontend is for the backend available here.
- Node.js
-
Install the dependencies:
npm install
-
By default, the app is configured to use the backend running on
http://localhost:8000
. If you are running the backend on a different URL, you can change theBASE_URL
insrc/utils/constants.js
:export const BASE_URL = 'http://localhost:8000'
-
Start the development server:
npm run dev
The application will start on
http://localhost:5173
.