├── .github └── workflows │ ├── PR.yaml │ ├── preview.yaml │ └── production.yaml ├── Backend ├── .gitignore └── hairify │ ├── .env.sample │ ├── authentication │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── chat │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py │ ├── hairify │ ├── .gitignore │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── requirements.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md └── frontend ├── .env.sample ├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── hero_bg.jpg └── pages_bg.jpg ├── src ├── app │ ├── chat │ │ └── page.tsx │ ├── dashboard │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── login │ │ └── page.tsx │ ├── page.tsx │ ├── report │ │ └── page.tsx │ └── signup │ │ └── page.tsx ├── assets │ ├── hero_img.png │ ├── icon.png │ └── report_img.png ├── components │ ├── LoaderRipple.tsx │ ├── Recordviewer.tsx │ ├── header.tsx │ └── ui │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dialog.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── skeleton.tsx │ │ ├── table.tsx │ │ └── textarea.tsx ├── context │ └── dataContext.tsx ├── dashboard │ └── page.tsx ├── lib │ └── utils.ts ├── report │ └── page.tsx └── utils │ └── formatRelativeTime.tsx ├── tailwind.config.ts └── tsconfig.json /.github/workflows/PR.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/.github/workflows/PR.yaml -------------------------------------------------------------------------------- /.github/workflows/preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/.github/workflows/preview.yaml -------------------------------------------------------------------------------- /.github/workflows/production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/.github/workflows/production.yaml -------------------------------------------------------------------------------- /Backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/.gitignore -------------------------------------------------------------------------------- /Backend/hairify/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/.env.sample -------------------------------------------------------------------------------- /Backend/hairify/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/hairify/authentication/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/authentication/admin.py -------------------------------------------------------------------------------- /Backend/hairify/authentication/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/authentication/apps.py -------------------------------------------------------------------------------- /Backend/hairify/authentication/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/authentication/migrations/0001_initial.py -------------------------------------------------------------------------------- /Backend/hairify/authentication/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/hairify/authentication/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/authentication/models.py -------------------------------------------------------------------------------- /Backend/hairify/authentication/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/authentication/serializers.py -------------------------------------------------------------------------------- /Backend/hairify/authentication/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/authentication/tests.py -------------------------------------------------------------------------------- /Backend/hairify/authentication/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/authentication/urls.py -------------------------------------------------------------------------------- /Backend/hairify/authentication/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/authentication/views.py -------------------------------------------------------------------------------- /Backend/hairify/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/hairify/chat/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/chat/admin.py -------------------------------------------------------------------------------- /Backend/hairify/chat/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/chat/apps.py -------------------------------------------------------------------------------- /Backend/hairify/chat/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/chat/migrations/0001_initial.py -------------------------------------------------------------------------------- /Backend/hairify/chat/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/hairify/chat/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/chat/models.py -------------------------------------------------------------------------------- /Backend/hairify/chat/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/chat/serializers.py -------------------------------------------------------------------------------- /Backend/hairify/chat/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/chat/tests.py -------------------------------------------------------------------------------- /Backend/hairify/chat/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/chat/urls.py -------------------------------------------------------------------------------- /Backend/hairify/chat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/chat/utils.py -------------------------------------------------------------------------------- /Backend/hairify/chat/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/chat/views.py -------------------------------------------------------------------------------- /Backend/hairify/hairify/.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /Backend/hairify/hairify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/hairify/hairify/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/hairify/asgi.py -------------------------------------------------------------------------------- /Backend/hairify/hairify/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/hairify/settings.py -------------------------------------------------------------------------------- /Backend/hairify/hairify/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/hairify/urls.py -------------------------------------------------------------------------------- /Backend/hairify/hairify/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/hairify/wsgi.py -------------------------------------------------------------------------------- /Backend/hairify/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/manage.py -------------------------------------------------------------------------------- /Backend/hairify/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/Backend/hairify/requirements.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/README.md -------------------------------------------------------------------------------- /frontend/.env.sample: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_BACKEND_PATH=http://127.0.0.1:8000 -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/components.json -------------------------------------------------------------------------------- /frontend/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/next.config.mjs -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/hero_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/public/hero_bg.jpg -------------------------------------------------------------------------------- /frontend/public/pages_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/public/pages_bg.jpg -------------------------------------------------------------------------------- /frontend/src/app/chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/app/chat/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/app/favicon.ico -------------------------------------------------------------------------------- /frontend/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/app/globals.css -------------------------------------------------------------------------------- /frontend/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/app/layout.tsx -------------------------------------------------------------------------------- /frontend/src/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/app/login/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/app/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/report/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/app/report/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/app/signup/page.tsx -------------------------------------------------------------------------------- /frontend/src/assets/hero_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/assets/hero_img.png -------------------------------------------------------------------------------- /frontend/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/assets/icon.png -------------------------------------------------------------------------------- /frontend/src/assets/report_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/assets/report_img.png -------------------------------------------------------------------------------- /frontend/src/components/LoaderRipple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/components/LoaderRipple.tsx -------------------------------------------------------------------------------- /frontend/src/components/Recordviewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/components/Recordviewer.tsx -------------------------------------------------------------------------------- /frontend/src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/components/header.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/components/ui/button.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/components/ui/card.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/components/ui/input.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/components/ui/label.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/components/ui/table.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /frontend/src/context/dataContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/context/dataContext.tsx -------------------------------------------------------------------------------- /frontend/src/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/dashboard/page.tsx -------------------------------------------------------------------------------- /frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend/src/report/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/report/page.tsx -------------------------------------------------------------------------------- /frontend/src/utils/formatRelativeTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/src/utils/formatRelativeTime.tsx -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algovengers/Hairify/HEAD/frontend/tsconfig.json --------------------------------------------------------------------------------