MagicPost

Prerequisites

Clone the repository

git clone https://github.com/hairbui76/MagicPost.git

Utitlities Dependencies

  1. PostgreSQL installed in local
  2. Redis installed in local

Packages dependencies

Run this command to install all the packages required

npm install

Development

Simultaneously run both backend and frontend

npm run dev

Or separating run manually

Backend

Open a new terminal then run

cd backend && dotnet watch run

Frontend

Open a new separate terminal then run

cd frontend && npm run dev