-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from kitarp29/master
Added README.md
- Loading branch information
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/<YOUR_GITHUB_USERNAME>/landing-pagepwd.git | ||
``` | ||
|
||
3. Go into the directory containing the project. | ||
|
||
``` | ||
cd landing-page | ||
``` | ||
|
||
4. Install all the dependencies | ||
|
||
``` | ||
yarn install | ||
``` | ||
|
||
5. Start the development server. | ||
|
||
``` | ||
yarn start | ||
``` | ||
|
||
6. Build the Community website: | ||
|
||
```sh | ||
yarn build | ||
``` | ||
|
||
7. Serve an optimized production build: | ||
|
||
```sh | ||
yarn serve | ||
``` | ||
|
||
|
||
The site starts at http://localhost:3000/ after starting the server. |