Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 653 Bytes

Getting_Started_Backend.md

File metadata and controls

38 lines (30 loc) · 653 Bytes

Getting Started with the Backend.

To get started with HotelBot, follow these steps:

  1. Navigate to the project directory:

    cd HotelBot
  2. Install the dependencies:

    npm install

    or

    bun install
  3. Set up the environment variables:

    • Create a .env file in the root directory.
    • Add the following variables to the .env file:
      GEMINI_API_KEY=<YOUR_GEMINI_API_KEY>
      
  4. Start the development server:

    npm start

    or

    bun --hot run index.ts
  5. Open your browser and navigate to http://localhost:PORT to access HotelBot.

Thanks for using HotelBot!