-
Notifications
You must be signed in to change notification settings - Fork 317
Getting Started π¨βπ»
kajol edited this page Apr 25, 2021
·
1 revision
-
fork
the repository - Creates a replica of repository to your local environment. - Clone the repository using
git clone https://github.com/YOUR-USERNAME/Community-Website
- Downloads all repo files to your machine. -
cd Community-Website
- Takes you to the root directory of the project.
Following are the steps to run the frontend of the community-website on your local. All the frontend code will go in the frontend
directory.
- Navigate to
frontend
folder usingcd frontend
. - Run
npm install
. It will install all the required packages and dependencies. - Run
npm start
to run the server. - Navigate to http://localhost:3000 to view it in the browser.
The website is live at https://hitk-tech-community.netlify.app/
Following are the steps to run the backend of the community-website on your local. All the backend code will go in the backend
folder.
- Navigate to
backend
folder usingcd backend
- Run
npm install
. It will install all the required packages and dependencies. - Run
npm start
to run the server in dev mode. - Navigate to http://localhost:3500 to see the backend server runing in the browser.
The backend is live at https://community-website-backend.herokuapp.com/
The dummy admin credentials to login to the admin dashboard are given below -
{
"email" : "[email protected]",
"password" : "check"
}