Filmstrip View

Installation

Client Setup

  1. Navigate to the client directory:
    cd client
  2. Install the dependencies:
    npm install
    or if you use Yarn:
    yarn install

Server Setup

  1. Navigate to the server directory:
    cd ../server
  2. Install the dependencies:
    npm install
    or if you use Yarn:
    yarn install

Running the Applications

Running the Client

  1. Navigate to the client directory:
    cd client
  2. Start the client application:
    npm run dev
    or if you use Yarn:
    yarn run dev
  3. Open your browser and go to http://localhost:5173.

Running the Server

  1. Navigate to the server directory:
    cd ../server
  2. Start the server application:
    npm start
    or if you use Yarn:
    yarn start
  3. The server should be running on http://localhost:3000 (or the port specified in your server configuration).