- please give github a star
- clone this
- setting .env
- npm install
- node ace make:migration run
- node ace serve --watch
Ket | Method | URL | Auth | Field |
---|---|---|---|---|
Login | POST | /api/register | - | full_name, email, password |
Register | POST | /api/login | - | email, password |
Create | POST | /api/posts | Bearer | title, content, user_id |
Update | PUT | /api/posts/{idPost} | Bearer | title, content, user_id |
Detail | GET | /api/posts/{idPost} | Bearer | - |
Delete | DELETE | /api/posts/{idPost} | Bearer | - |