CritiQ
1.0.0

CRITIQは、製品やサービスの顧客レビューとフィードバックを処理するための分散型Webアプリケーションです。それはレビュアーを奨励し、彼らが真正性を維持するためにギバッシュなレビューを投稿するのを防ぎます。企業は、市場での競争を改善するためにLLMSを支援しています。ユーザー、レビュー、および検証プロセスを管理するためのさまざまなエンドポイントを提供します。

Contract address : "0x08eB668E21bee808e48A0449713b3494476Eb1b0",
Block explorer Transaction Hash : "0x6e9e8cc04003759822505cdf5bbb39258ba71a4f76b07e30daa0ac343ee3ded9"
Block explorer url : https://subnets-test.avax.network/c-chain
リポジトリのクローン: git clone https://github.com/biswajit150803/critiqAll_backend.git cd critiqAll_backend
依存関係のインストール: npm install
次の変数を使用して.ENVファイルを作成します。
PORT=your_port
npm start バックエンドAPI:
- 顧客を登録します
- Method: POST
- Body:
{
"name": "string",
"companyEmail": "string",
"walletAddress": "string"
}
- 顧客をロギンします
- Method: POST
- Body:
{
"walletAddress": "string"
}
- 会社を登録します
- Method: POST
- Body:
{
"companyName": "string",
"companyEmail": "string",
"companyLogoUrl": "string",
"companyDescription": "string",
"walletAddress": "string",
}
- 会社にロギン
- Method: POST
- Body:
{
"walletAddress": "string"
}
-otp検証
- Method: POST
- Body:
{
"email": "string",
"otp": "string"
}
- Method: GET
- Body:
{
"phone": "string",
}
- Method: POST
- Body:
{
"sid": "string",
"id": "string",
"phone": "string"
}
```
- URL: /
- Method: POST
- Body:
{
"productName": "string",
"productDescription": "string",
"productImageUrl": "string",
"isOrderIdTracking": "boolean",
"reviewDate": "string",
"excelFile": "string",
"questions": [
{
"question": "string",
"type": "string",
"options": [
"string"
]
}
],
}
このプロジェクトは、MITライセンスの下でライセンスされています。