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许可获得许可。