Frontend for Project Showcase (a platform for people to showcase their projects and build a project-centric profile)
Let's setup the client on your machine.
- Make sure you have Node.js installed on your machine.
- Setup backend of the project for a complete experience(optional).
Fork this repo to your GitHub account
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
npm install
- You will have to set up remote repositories for getting latest changes from original repository
- 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
- 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)
```bash
# development
$ npm start
```