From 708512c502a8b5692e552d3e625549fd13f7ee79 Mon Sep 17 00:00:00 2001 From: Jayant Date: Wed, 10 Jul 2024 00:37:22 +0530 Subject: [PATCH] added README.md --- README.md | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8702d5c --- /dev/null +++ b/README.md @@ -0,0 +1,49 @@ +# Plinko + +## Setting it up Locally + +### Backend + +1. cd in folder + +```bash +cd backend +``` + +2. Install dependencies + +```bash +npm i +``` + +3. Build the application + +```bash +npm run build +``` + +4. Start the application + +```bash +npm run start +``` + +### Frontend + +1. cd in folder + +```bash +cd frontend +``` + +2. Install dependencies + +```bash +npm i +``` + +3. Start the application + +```bash +npm run dev +```