https://github.com/codebyaadi/landmark-task
https://github.com/codebyaadi/landmark-task
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codebyaadi/landmark-task
- Owner: codebyaadi
- Created: 2024-02-28T11:39:00.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-28T11:40:20.000Z (about 2 years ago)
- Last Synced: 2024-11-26T04:30:47.791Z (over 1 year ago)
- Language: JavaScript
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Getting Started
To start a project and running follow these simple steps.
### Backend Setup
1. Navigate to the `backend` directory:
```bash
cd backend
```
2. Install backend dependencies:
```bash
npm install
```
3. Start the backend server:
```bash
npm start
```
This will start the Express server on port `8080`.
### Frontend Setup
1. Navigate to the `frontend` directory:
```bash
cd ../frontend
```
2. Install frontend dependencies:
```bash
npm install
```
3. Start the frontend development server:
```bash
npm run dev
```
This will start the React development server and open the application in your default web browser.