Updated README

This commit is contained in:
Hackntosh 2023-09-02 16:11:41 -03:00
parent a2d4af45a3
commit 23dd0a2b32
2 changed files with 4 additions and 3 deletions

View file

@ -2,9 +2,11 @@
An open-source social media.
You can find the front-end [here](https://github.com/CookieDasora/project-knedita-client)
## Stack
**Client**: React, TailwindCSS and Radix UI (Primitives and Icons)
**Client**: NextJS, TailwindCSS and Radix UI Icons
**Server**: ExpressJS, Jest, Docker, Postgresql, Redis, Prisma, AWS, SWC and Typescript

View file

@ -10,8 +10,7 @@ const server = createServer(app)
const io = createSocketIOInstance(server)
app.use((req, res, next) => {
// @ts-expect-error TODO: add io type
req.io = io
res.locals.io = io
next()
})