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",
}
- login一家公司
- 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許可獲得許可。