Skip to content

Latest commit

 

History

History
77 lines (49 loc) · 1.81 KB

README.md

File metadata and controls

77 lines (49 loc) · 1.81 KB

Friend's App

Welcome to the Friend's App repository! This social media platform offers unique features not available on other platforms, and we invite you to contribute to its growth.

Table of Contents

Introduction

Friend's App is a social media platform aimed at connecting people and fostering meaningful interactions. We believe in the power of open-source collaboration to make the app even better.

Getting Started:

  • Star this repository if you find it useful!

  • Fork this repository if you want to contribute!

  • Pull requests are welcome. Please follow our CONTRIBUTING.md

Prerequisites

Before you start contributing, please ensure you have the following prerequisites:

Installation

Follow these steps to set up Friend's App on your local machine:

  1. Clone the repository:

    git clone https://github.com/your-username/friends-app.git
    
  2. Change to the project directory:

    cd friends-app
    
  3. Install dependencies:

    # Angular frontend
    cd frontend
    npm install
    
    # Spring Boot backend
    cd ../backend
    mvn install
    
    
  4. Start the app:

    # Start Angular frontend
     cd ../frontend
     ng serve
    
     # Start Spring Boot backend
     cd ../backend
     mvn spring-boot:run
    

Now you should have the Friend's App running locally.