From af15ce7e16532603056024e391ccb8af729a0347 Mon Sep 17 00:00:00 2001 From: kitarp29 Date: Sat, 30 Oct 2021 11:36:27 +0530 Subject: [PATCH 1/2] Added Readme.md --- README.md | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/README.md b/README.md index e69de29..1d7747d 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,56 @@ +# Landing-webpage Point Blank + +![Powered by Vercel](website/static/img/powered-by-vercel.svg) + +This is the landing page of Point Blank. A coding community of Dayananda Sagar College of Engineering, Bangalore. The site is deployed on Vercel. + +## What is Point Blank? + +A Community Focused towards development of Industry ready engineers as wholesome individuals. + +## Development Setup + +Before setting up the project make sure the LTS (Long Term Support) version of NodeJs is installed with a package manager of your choice. We recommend NPM or Yarn. +Steps to install NodeJs [Here](https://nodejs.org/en/download/) + + +1. Fork the repository. + +2. Clone the repository. + +``` + https://github.com//landing-pagepwd.git +``` + +3. Go into the directory containing the project. + +``` + cd landing-page +``` + +4. Install all the dependencies + +``` + npm i +``` + +5. Start the development server. + +``` + npm start +``` + +6. Build the Community website: + +```sh + npm build +``` + +7. Serve an optimized production build: + +```sh + npm serve +``` + + +The site starts at http://localhost:3000/ after starting the server. \ No newline at end of file From ec20444aed38ac7957bc2a3900ce876532290282 Mon Sep 17 00:00:00 2001 From: kitarp29 Date: Sat, 30 Oct 2021 12:03:02 +0530 Subject: [PATCH 2/2] Rectified README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1d7747d..2634e22 100644 --- a/README.md +++ b/README.md @@ -31,25 +31,25 @@ Steps to install NodeJs [Here](https://nodejs.org/en/download/) 4. Install all the dependencies ``` - npm i + yarn install ``` 5. Start the development server. ``` - npm start + yarn start ``` 6. Build the Community website: ```sh - npm build + yarn build ``` 7. Serve an optimized production build: ```sh - npm serve + yarn serve ```