891 B
891 B
RoleForge Backend
Backend for an Ansible orchestration platform.
The project is designed to run fully in Docker, without installing Python dependencies on the host.
Includes:
- Playbook execution
- Molecule-based role/playbook test runs with dynamic container inventory
- Realtime logs over WebSocket
Structure
app/- all application source code, templates, and SQL bootstrapdocs/- project documentationk8s/- Kubernetes manifests
Quick start
- Create local env file:
cp .env.example .env
- Start project:
make up
- Open:
http://localhost:8000/docs
Main commands
make up- start services (api,postgres,redis)make down- stop servicesmake logs- view logsmake ps- service statusmake db-shell- open PostgreSQL shellmake api-shell- shell in API container
Detailed usage is in docs/runbook.md.