Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 825 Bytes

README.md

File metadata and controls

56 lines (41 loc) · 825 Bytes

Authentication

Prerequisites

Make sure you have the following installed on your machine:

  • Node.js
  • npm (Node Package Manager)

Getting Started

Frontend

  1. Navigate to the frontend directory:

    cd client
  2. Install dependencies:

    npm install
  3. Start the development server:

    npm run dev

Installing Tailwind CSS

  1. Install Tailwind CSS and its dependencies:

    npm install -D tailwindcss postcss autoprefixer
  2. Initialize Tailwind CSS configuration:

    npx tailwindcss init -p

Backend

  1. Navigate to the backend directory:

    cd server
  2. Install the necessary packages:

    npm install
  3. Start the backend server:

    npm run start