Skip to content

Latest commit

 

History

History
74 lines (51 loc) · 1011 Bytes

File metadata and controls

74 lines (51 loc) · 1011 Bytes

Technical-Assessment-React-Full-Stack

This project is a full-stack application that demonstrates a simple to-do list using React and Node.js.

Installation

To get started, follow these steps:

  1. Clone the repository:
git clone https://github.com/mihail-fomin/Technical-Assessment-React-Full-Stack.git
cd Technical-Assessment-React-Full-Stack
  1. Install backend dependencies:
cd backend
npm install

or if you prefer using Yarn:

cd backend
yarn
  1. Install frontend dependencies:
cd ../frontend
npm install

or if you prefer using Yarn:

cd ../frontend
yarn

Running the Application

  1. Start the backend server:
cd backend
npm run start

or if you prefer using Yarn:

cd backend
yarn start
  1. 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/.