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 +```