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.
Before you can run this project, you'll need to have the following software installed on your system:
-
Clone the repository to your local machine:
git clone https://github.com/tanjounokamioku/registration-full-stack-app.git
To run the demo project, you'll need to start both the frontend and backend components.
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.
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.