dev4vater / vater

11 stars 5 forks source link

Full Documentation: https://mad-ducks-vater.readthedocs.io

Structure

.
├── control-services
│   ├── bin                             # Utility scripts not for direct Vater service interaction
│   │   └── setup.sh
│   ├── cli                             # A command line interface for working with Vater services
│   │   ├── api.py
│   │   ├── config.py
│   │   ├── dev.py
│   │   ├── gitea.py
│   │   ├── __init__.py
│   │   ├── parser.py
│   │   ├── __pycache__
│   │   ├── semaphore.py
│   │   ├── vater.py
│   │   └── vDocker.py
│   ├── config.json                     # A configuration file for changing Vater settings
│   ├── data                            # Persistent service data
│   │   ├── gitea
│   │   ├── gitea_db
│   │   ├── semaphore
│   │   └── semaphore_db
│   ├── docker-compose.yml              # Instructions for configuring the service containers
│   ├── images                          # Augmented service images
│   │   └── semaphore
│   └── README.md
├── diagram                             # Diagrams for the Wiki
│   ├── instructorExperience.drawio
│   ├── instructorExperience.svg
│   ├── MADDUCK.JPG
│   ├── range.drawio
│   ├── range.svg
│   ├── terraformDesign.drawio
│   ├── terraformDesign.svg
│   └── vaterCLI.drawio
└── README.md

Day 0 Deployment