Simple Instagram backend with Realtime connection.
- 1 - Download this repository
- 2 -
npm i
oryarn install
- 3 -
npm run dev
oryarn dev
Thanks to Rocketseat and your OmniStack Week
Route | Verb(s) | Handler | Middleware |
---|---|---|---|
/signin | POST | SessionController.store | |
/signup | POST | UserController.store | |
/posts | GET | PostController.index | |
/posts | POST | PostController.store | multer.single('image) |
/posts/:id/like | POST | LikeController.store |