Skip to content

Latest commit

 

History

History
70 lines (48 loc) · 1.56 KB

README.md

File metadata and controls

70 lines (48 loc) · 1.56 KB

Registration Full Stack App

This is a demo project that includes both frontend and backend components. It demonstrates the registration functionality using Angular for the frontend and a Java backend for the backend.

Table of Contents

Getting Started

Prerequisites

Before you can run this project, you'll need to have the following software installed on your system:

Installation

  1. Clone the repository to your local machine:

    git clone https://github.com/tanjounokamioku/registration-full-stack-app.git
    

Usage

To run the demo project, you'll need to start both the frontend and backend components.

Frontend

Navigate to the demo-frontend directory:

cd demo-frontend

Install dependencies for the frontend:

npm install

Start the Angular development server:

ng serve

Open your web browser and go to http://localhost:4200 to access the frontend.

Backend

Navigate to the demo-backend directory:

cd demo-backend

Build and run the Java backend using Maven:

mvn clean install
java -jar target/demo-0.0.1-SNAPSHOT.jar

The backend server will be running at http://localhost:8080.