- Navigate to the
client
directory:cd client
- Install the dependencies:
or if you use Yarn:
npm install
yarn install
- Navigate to the
server
directory:cd ../server
- Install the dependencies:
or if you use Yarn:
npm install
yarn install
- Navigate to the
client
directory:cd client
- Start the client application:
or if you use Yarn:
npm run dev
yarn run dev
- Open your browser and go to
http://localhost:5173
.
- Navigate to the
server
directory:cd ../server
- Start the server application:
or if you use Yarn:
npm start
yarn start
- The server should be running on
http://localhost:3000
(or the port specified in your server configuration).