Changes between Version 2 and Version 3 of PrototypeApplication
- Timestamp:
- 02/21/25 16:58:55 (24 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PrototypeApplication
v2 v3 1 1 = Prototype application 2 3 2 == Implementation Of User Scenarios 4 5 3 **[wiki:UseCaseImplementation UseCaseImplementation]** 6 7 4 == RouteMK Project Setup Guide 8 5 === Git Repository: … … 11 8 - Docker and Docker Compose installed on your system **[[https://docs.docker.com/get-started/get-docker|Download Docker]]** 12 9 - Git (to clone the repository) **[[https://git-scm.com/downloads|Download Git]]** 10 === 11 ==== **There are many different ways to start the project but we recommend starting the project this way:** 13 12 === Setup Instructions 14 15 13 1. Clone the repository: 16 14 {{{ 17 15 git clone https://github.com/KikoTheFinker/RouteMK 18 16 }}} 19 20 21 17 2. Build and run the containers: 22 18 {{{ 23 19 docker-compose up --build 24 20 }}} 25 26 21 === Accessing the Application 27 22 - Spring Boot application: **http://localhost:8080** … … 32 27 - Username: postgres 33 28 - Password: postgres 34 35 29 === Database Management 36 30 - Database data is persisted in a Docker volume named `postgres_data` … … 41 35 docker compose up -d 42 36 }}} 43 44 37 === Stop the application 45 38 {{{ 46 39 docker compose down 47 40 }}} 48