Project for CSE 470 - Software Engineering
- Get recomended pets based on your life style
- Shop for your pet
- Get notifiacition about missing pets near your, find all the post about missing pets near you.
- Find pets for adoption near you
- Find vet doctors Near you
- Ai chatbot as a professional vet
Make sure you have Node.js and npm installed. Then run:
npm install
Create your own .env file in the root directory.
Your .env file should look like this:
DATABASE_URL = your_database_url_here
JWT_SECRET = your_jwt_secret_here
CLOUDINARY_CLOUD_NAME = your_cloudinary_cloud_name
CLOUDINARY_API_KEY = your_cloudinary_api_key
CLOUDINARY_API_SECRET = your_cloudinary_api_secret
🛑 Never commit your .env file to version control.
npm run dev
Run These commands then
npx prisma db push
npx prisma generate
- First run to seed pet data
npx prisma db seed
- Now remane the
seed.ts
to something else and renameseed2.ts
-> to ->seed.ts
. - Now again run
npx prisma db seed
this will update the product data - Check all data tables using
npx prisma studio
or go to NeonDB and check your project's Table
Open your browser and visit for local development : http://localhost:3000