MediGuide
An AI-powered reminder and monitoring system designed to enhance patient safety by ensuring adherence to medication regimens
The tech stack includes:
- Framework - Next.js 14
- Language - TypeScript
- Styling - Tailwind CSS
- Components - Shadcn-ui
- Backend - Python Flask
- Conversational AI - Vapi
- ORM - Prisma
- Postgres on the Cloud - Neon
Follow these steps to clone the repository and start the development server:
git clone https://github.com/Kiranism/next-shadcn-dashboard-starter.git
npm install
- Create a
.env.local
file by copying the example environment file:cp env.example.txt .env.local
- Add the required environment variables to the
.env.local
file. npm run dev
You should now be able to access the application at http://localhost:3000.
npm exec prisma migrate dev
and select yes to overwrite datanpm exec prisma generate
- python -m venv new_env_name
- source new_env_name/bin/activate
- pip install -r requirements.txt
- flask --app app run --port 8000