This project is a chatbot designed to assist with troubleshooting car-related problems. It consists of two main parts: the frontend and the backend. Follow the instructions below to set up, clone, and run the project.
- Frontend: Located in the
frontend
folder. Built using Next.js. - Backend: Located in the
DotNetConf
folder. Built with .NET.
To get started, clone the repository to your local machine.
-
Open your terminal.
-
Run the following command to clone the repository:
git clone https://github.com/aayaniverma/Pioneers.git
-
Navigate into the cloned repository:
cd Pioneers
Ensure you have the following installed:
-
Navigate to the
frontend
folder:cd frontend
-
Install the dependencies:
npm install
-
Install DaisyUI (for UI components):
npm i -D daisyui@latest
-
Start the development server:
npm run dev
-
Navigate to the
frontend
folder:cd frontend
-
Install the dependencies:
yarn install
-
Install DaisyUI:
yarn add -D daisyui@latest
-
Start the development server:
yarn dev
Ensure you have the following installed:
-
Navigate to the
DotNetConf
folder:cd DotNetConf
-
Install all necessary dependencies:
dotnet restore
-
Copy and paste the commands from the
script.rtf
file into your terminal:cat script.rtf | pbcopy # Mac/Linux clip < script.rtf # Windows
-
Start the backend server:
dotnet watch run
- Frontend issues: Make sure all dependencies are installed, and you are running the latest Node.js version.
- Backend issues: Verify that the .NET SDK is installed and properly configured.
Feel free to open an issue if you encounter any problems!