Skip to content

Ar-Srivas/Dishcraft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DishCraft - Setup Guide

Instructions to set up and run the backend (FastAPI) and frontend (React with Vite) for DishCraft.

Prerequisites

Ensure you have the following installed:

Backend (FastAPI) Setup

  1. Navigate to the backend directory:
    cd backend
  2. Install dependencies:
    pip install -r requirements.txt
  3. Run the FastAPI server:
    uvicorn server:app --reload
  4. API Documentation: Open the following URLs in your browser:

Frontend (React + Vite) Setup

  1. Navigate to the frontend directory:
    cd frontend/dishcraft
  2. Install dependencies:
    npm install
  3. Run the frontend development server:
    npm run dev
  4. Access the app: Open http://localhost:5173 in your browser.

Running the Full Stack Application

To run both the backend and frontend simultaneously:

  1. Open two terminal windows
  2. Run the backend server:
    cd backend
    uvicorn server:app --reload
  3. Run the frontend server:
    cd frontend/dishcraft
    npm run dev

Now, your DishCraft app should be fully functional! 🚀

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors