Skip to main content

Clone ORISO Repositories

Set up the project directory and transfer ORISO repositories to your server.
1

Create Project Directory

Create the main project directory for ORISO Platform files.
# Create project directory
mkdir -p ~/online-beratung
cd ~/online-beratung

# Initialize git (optional)
git init
2

Transfer ORISO-Kubernetes Repository

Choose one of the following methods to transfer your ORISO repositories to the new server.
Transfer directly from an existing server using SCP.
# On NEW server, from OLD server
scp -r old-server:/path/to/caritas-workspace ~/online-beratung/

# Verify
ls -la ~/online-beratung/caritas-workspace/
3

Verify Repository Structure

Verify all required repositories and directories are present.
cd ~/online-beratung/caritas-workspace

# Check structure
ls -la
You should see the following directories:
  • ORISO-Kubernetes/
  • ORISO-Database/
  • ORISO-Keycloak/
  • ORISO-Redis/
  • ORISO-Nginx/
  • ORISO-Matrix/
  • ORISO-SignOZ/ (optional)
  • ORISO-Element/
  • ORISO-HealthDashboard/
  • ORISO-Frontend/
  • ORISO-Admin/
  • ORISO-TenantService/
  • ORISO-UserService/
  • ORISO-AgencyService/
  • ORISO-ConsultingTypeService/
Check ORISO-Kubernetes structure:
tree -L 2 ORISO-Kubernetes/
Expected structure:
ORISO-Kubernetes/
├── README.md
├── DEPLOYMENT.md
├── STATUS.md
├── deployments/
├── services/
├── configmaps/
└── scripts/

Next Steps