@@ -21,6 +21,8 @@ source setenv.sh
2121cd UnityAuth
2222./gradlew run
2323```
24+ This starts the UnityAuth API server on http://localhost:9090 if the ` MICRONAUT_ENVIRONMENTS `
25+ environment variable contains ` local ` .
2426
2527Run the UnityAuth UI in another terminal windows:
2628``` shell
@@ -29,6 +31,7 @@ cd frontend
2931npm install
3032npm run dev
3133```
34+ This starts the frontend on http://localhost:3001 .
3235
3336### Docker Environment
3437To launch the auth service, you can use the docker compose from the project root:
@@ -41,7 +44,7 @@ This will start containers for the UnityAuth API, UI and database server with se
4144names ` unity-auth-api ` , ` unity-auth-ui ` , and ` unity-auth-db ` , respectively.
4245
4346- ** UnityAuth API** on http://localhost:9090 (inside Docker http://unity-auth-api:9090 )
44- - ** UnityAuth UI** on http://localhost:3001 (inside Docker http://unity-auth-ui:3000 )
47+ - ** UnityAuth UI** on http://localhost:3001 (inside Docker http://unity-auth-ui:3001 )
4548- ** MySQL Database** is open on port ` 13306 ` in ` localhost ` (within Docker is port ` 3306 `
4649 with host name ` unity-auth-db ` )
4750
@@ -72,7 +75,8 @@ This repository contains three main subprojects:
7275
7376### 1. UnityAuth (Main Service)
7477
75- ** Location:** ` /UnityAuth/ `
78+ ** Location:** ` /UnityAuth `
79+
7680** Technology:** Java 21 + Micronaut Framework
7781
7882The core authentication service that provides:
@@ -94,7 +98,8 @@ The core authentication service that provides:
9498
9599### 2. AuthGenHash (Utility Tool)
96100
97- ** Location:** ` /AuthGenHash/ `
101+ ** Location:** ` /AuthGenHash `
102+
98103** Technology:** Java 17 + Micronaut + PicoCLI
99104
100105A command-line utility for generating secure password hashes compatible with the UnityAuth service.
@@ -107,7 +112,8 @@ A command-line utility for generating secure password hashes compatible with the
107112
108113### 3. Frontend (Web Administration Interface)
109114
110- ** Location:** ` /frontend/ `
115+ ** Location:** ` /frontend `
116+
111117** Technology:** SvelteKit + TypeScript + Tailwind CSS
112118
113119A modern web application providing administrative interface for the UnityAuth service.
0 commit comments