Skip to content

Latest commit

 

History

History
77 lines (52 loc) · 2.05 KB

README.md

File metadata and controls

77 lines (52 loc) · 2.05 KB

🛡️ FraudFree API

If you're looking the frontend, go here

Runing using our APIs

plugin-example

Getting raw data

run our model that generates the conclusion about the shops/e-commerces, curl example:

curl -X 'GET' \
  'https://fraud-free-api.onrender.com/Conclusion?url=amazon.com' \
  -H 'accept: */*'

Swagger

https://fraud-free-api.onrender.com/swagger#/

swegger-ex

Installing extension on Chrome

Watch the Youtube video

  1. Click on manage extension
  2. Load unpacked
  3. Find our folder

Installing extension on Firefox

Watch the Youtube video

  1. Click on manage extension
  2. Load unpacked
  3. Find our zip folder

🛠️ Tech Stack

  • Next.js - A powerful React framework for building dynamic web applications.
  • TailwindCSS - A utility-first CSS framework for fast UI development.
  • Framer Motion - For smooth animations.
  • NestJS - Powerfull API, check the api on github.
  • Vanilla JS - The tasty way to create our plugin for chrome and firefox, check on github.
  • MongoDB - A NoSQL database for storing website information.

Starting Development

  • First clone the repo
  • Copy the .env-dist to .env
cp .env-dist .env
  • Install the packages
npm i
  • Run Mongo with docker-compose You should have docker running
docker compose up
  • After installed everything and mongo running, just run the application
npm run start:dev