This is a shop for fashion using search image project build base on
- Backend: Microservices architecture: Django, NestJS
- Frontend: ReactJS
- Database: SQLite and MongoDB
- Image Recognition: VGG16 model
Make sure you have npx installed (npx
is shipped by default since npm 10.2.2
) and Python.
Just run the following command at the root of your project:
First, run the development client:
cd client
npm i
npm run dev
# or
yarn dev
# or
pnpm dev
Second run the development server user:
cd api
npm i
Add url database in this line MongooseModule.forRoot('YOUR_URL_DATABASE')
npm run dev --watch
# or
yarn dev
# or if already install nest: npm install -g @nestjs/cli
nest start --watch
The final, run the development server seller:
cd api_admin
python -m venv .venv
.venv\Scripts\activate
python manage.py runserver
Open http://localhost:5107 with your browser to see the result client.
Open http://localhost:3000 with your browser to see the result server user.
Open http://localhost:8000 with your browser to see the result server seller.
Run test on Server side with Jest.js has build with Nest.js Project:
npm run test:watch
π€ --Jihto--