Skip to content

JonathanMitchell1234/UserManagement

Repository files navigation

User Management Application

appgif

Prerequisites

Clone the Repository

git clone https://github.com/JonathanMitchell1234/ClermontCountyAssessment.git

Setup Database

  1. Navigate to the project directory in your terminal.

  2. Run the following command to start the MySQL database:

docker-compose up -d
Alternatively, use the build_database.sql script to build 
the database manually

Build and Run Backend Service

  1. Build the Docker image for the backend service by navigating to the ClermontBackend Directory:
docker build -t backend-service .
  1. Run the backend service container:
docker run -d -p 5153:5153 --name backend_service backend-service

Access the Application

  1. Open index.html in your preferred web browser or use a live server extension in a development environment.

  2. Ensure that the backend service is running and accessible at http://localhost:5153.

Admin Panel Login

Since this is not a production environment application and is only a demo, the username and password to login has been set simply to:

Username: admin
Password: admin

Stopping the Application

  • To stop the database and backend service, execute:
docker-compose down

docker stop backend_service

docker rm backend_service

Notes

  • The database initialization script BUILD_DATABASE.SQL is automatically executed when the MySQL container starts.

  • Ensure that ports 3306 and 5153 are not occupied by other services on your machine.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published