From 734d658173a661a09ed5ab80463575b67cd78e48 Mon Sep 17 00:00:00 2001 From: Mann Patel <130435633+MannPatel0@users.noreply.github.com> Date: Thu, 30 Jan 2025 13:37:10 -0700 Subject: [PATCH] Update the file --- README.md | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 831a075..a919c3d 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,29 @@ # Campus-Plug - - The ultimate plug for student deals +The ultimate plug for student deals + +## some ground rules +1. Add both node_modules from client and server to your `gitignore` file +2. Do not use `.ENV` variables +3. Databased cannot a ---- -## some ground rulles - - add both node_modules from client and server to your `gitignore` file - - WE DO NOT USE .ENV variables ## Client +- Use React Js or html&css ## Server +1. Install the needed lib with the command bellow +``` bash + npm install express mysql2 dotenv cors +``` +2. make sure in the `package.json` file type is set to module, if it not there add it. +```json + { + ..., + "type": "module" + } +``` - ``` - npm install express mysql2 dotenv cors - ``` - -## Database \ No newline at end of file +## Database +- Use only SQL database +- Loading of initian database will be done \ No newline at end of file