Welcome to the Techy Software website project! This project is built using the MERN stack (MongoDB, Express, React, Node.js) with Vite for the frontend setup.
You can visit the live website Techy Software
Follow the steps below to set up the project locally.
Ensure you have the following installed:
- Node.js (v16 or higher)
- npm (v6 or higher)
- MongoDB
git clone https://github.com/urmilgadhiya18/techy_Software.git
cd techy_Software-
Install Backend Dependencies:
cd server npm install -
Create a
.envFile:Create a
.envfile in theserverdirectory and add the following environment variables:PORT=4004 MONGO_URI=your_mongodb_connection_string
-
Start the Backend Server:
node app.js
The backend server should now be running on
http://localhost:4004.
-
Navigate to the Frontend Directory:
cd ../client -
Install Frontend Dependencies:
npm install
-
Start the Frontend Server:
npm run dev
The frontend should now be running on
http://localhost:5173.
node app.js: Start the backend server.
npm run dev: Start the frontend server with Vite.
Feel free to open issues or submit pull requests if you find any bugs or want to add new features.