42 lines
675 B
Markdown
42 lines
675 B
Markdown
Here’s a cleaner and more informative version of your README section:
|
||
|
||
---
|
||
|
||
# 🧩 SOA – Service-Oriented Architecture Project
|
||
|
||
## 🚀 Quick Start
|
||
|
||
1. **Start the application stack:**
|
||
|
||
```bash
|
||
docker compose up -d --build
|
||
```
|
||
|
||
2. **Initialize Keycloak configuration:**
|
||
|
||
```bash
|
||
./setup-keycloak.sh
|
||
```
|
||
|
||
3. **Update your `/etc/hosts` file:**
|
||
|
||
```
|
||
127.0.0.1 api.local auth.local
|
||
```
|
||
|
||
---
|
||
|
||
## 🔐 Credentials
|
||
|
||
### Keycloak Admin Panel
|
||
|
||
* 📍 URL: [http://auth.local:8080](http://auth.local:8080)
|
||
* 👤 **Username:** `admin`
|
||
* 🔑 **Password:** `admin`
|
||
|
||
### Private API User
|
||
|
||
* 👤 **Username:** `alexis`
|
||
* 🔑 **Password:** `password`
|
||
|
||
--- |