Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 1.61 KB

README.md

File metadata and controls

54 lines (40 loc) · 1.61 KB

EduTECH

version contributors

EduTech is a MERN Full Stack project developed in the Make It Real Bootcamp.

Stack

This project is structured in a monorepo enabled by yarn workspaces with the following stack:

Frontend:

React Vite Redux Tailwindcss

Backend:

Nodejs Express SocketIo MongoDB

Deployment

  • Client: Vercel
  • Server: Heroku
  • Database: MongoDB Atlas
  • Email API: SendGrid
  • Image and Video Hosting: Cloudinary

Requests Flow

flowchart LR
A[HTTP Endpoint] -- Middleware --> B[Controller]
B[Controller] --> C[Service]
C[Service] --> D[(Database)]
Loading

Development

# Clone the repository
git clone https://github.com/paolorossig/edu-tech.git
cd edu-tech
# Create your own feature branch
git checkout dev
git checkout -b feat/NAME
yarn install
# Then open a PR explaining your contribution