https://github.com/franmc01/francisco-marin
https://github.com/franmc01/francisco-marin
angular nodejs
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/franmc01/francisco-marin
- Owner: franmc01
- Created: 2024-11-12T22:05:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-12T22:07:51.000Z (over 1 year ago)
- Last Synced: 2025-03-10T00:09:16.469Z (over 1 year ago)
- Topics: angular, nodejs
- Language: TypeScript
- Homepage:
- Size: 1.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## **Quick Setup and Execution Guide**
### **Prerequisites**
1. **Node.js** (v18 or higher)
- Check the installed version with:
```bash
node -v
```
- If you don't have the correct version, install it from [nodejs.org](https://nodejs.org/en/download/package-manager).
2. **PNPM** (Dependency manager used by this project)
- Install it globally with:
```bash
npm install -g pnpm
```
- Verify the installation with:
```bash
pnpm -v
```
---
### **Steps to Run the Project**
1. **Clone the repository:**
Clone the repository and navigate into the project directory:
```bash
git clone https://github.com/franmc01/francisco-marin.git
cd francisco-marin
```
2. **Install dependencies:**
Install the project dependencies with:
```bash
pnpm install
```
---
### **Running the Project**
1. **Start the backend first:**
Run the backend with:
```bash
pnpm run start:backend
```
2. **Start the frontend after the backend:**
Once the backend is running, start the frontend with:
```bash
pnpm run start
```
---
### **Access the Application**
- **Frontend**: [http://localhost:4200](http://localhost:4200) (or the configured port)
- **Backend**: [http://localhost:3200](http://localhost:3200) (or the configured port)
---