# Talent-Plus
- Javascript
- Node.js
- Express.js
- MongoDB
git clone https://github.com/Psalmzee/Talent-Plus-Backend.git
npm install
Update .env with example.env in root directory
npm start
---
## Usage
### Base URL
- https://localhost:9002
### Create a Text
- Route: /api/texts
- Method: POST
:point_down: Body
```json
{
"title": "TALENT PLUS"
}
👇 Response
{
"status": "success",
"data": {
"title": "TALENT PLUS",
"_id": "63756f852b0bed768b968d45",
"__v": 0
}
}
- Route: /api/texts
- Method: GET
👇 Response
{
"status": "success",
"data": [
{
"_id": "63756f852b0bed768b968d45",
"title": "TALENT PLUS",
"__v": 0
}
]
}
- Route: /api/texts/:TextId
- Method: DELETE
- Project Link: Talent-Plus-API
- NAME: Petra
- PROJECT: TALENT-PLUS