This project is a full-stack application that demonstrates a simple to-do list using React and Node.js.
To get started, follow these steps:
- Clone the repository:
git clone https://github.com/mihail-fomin/Technical-Assessment-React-Full-Stack.git
cd Technical-Assessment-React-Full-Stack
- Install backend dependencies:
cd backend
npm install
or if you prefer using Yarn:
cd backend
yarn
- Install frontend dependencies:
cd ../frontend
npm install
or if you prefer using Yarn:
cd ../frontend
yarn
- Start the backend server:
cd backend
npm run start
or if you prefer using Yarn:
cd backend
yarn start
- Start the frontend application:
cd ../frontend
npm run dev
or if you prefer using Yarn:
cd ../frontend
yarn dev
Now you should be able to access the application at http://localhost:5173/.