Skip to content

Latest commit

 

History

History
79 lines (62 loc) · 2.56 KB

README.md

File metadata and controls

79 lines (62 loc) · 2.56 KB

Project Showcase Client

Frontend for Project Showcase (a platform for people to showcase their projects and build a project-centric profile)


Light         Dark

Dark         Dark

🔨 Setup and Run

Setup local repo

Let's setup the client on your machine.

0. Prerequisites

1. Fork repo

Fork this repo to your GitHub account

2. Clone repo

Clone the forked repo to your local machine

git clone https://github.com/<YOUR-GITHUB-USERNAME>/project-showcase-client.git

Navigate to project directory

cd project-showcase-client

3. Install Dependencies

npm install

4. 📡 Setup remote

  1. You will have to set up remote repositories for getting latest changes from original repository
  2. Specify a new remote upstream repository that will be synced with the fork using follwoing command :
$ git remote add upstream https://github.com/vighnesh192/project-showcase-client.git
  1. Verify the new upstream repository you've specified for your fork using git remote -v
origin  https://github.com/<your-user-name>/project-showcase-client.git (fetch)
origin  https://github.com/<your-user-name>/project-showcase-client.git (push)
upstream        https://github.com/vighnesh192/project-showcase-client.git (fetch)
upstream        https://github.com/vighnesh192/project-showcase-client.git (push)

5. Running the app

```bash
# development
$ npm start
```

✨ Contributors