Getting Started
This guide provides detailed steps to set up and start the project using the provided tasks.py
file and Poetry for dependency management. Follow these instructions to get up and running quickly.
Prerequisites
Ensure you have the following installed on your system:
Installing Prerequisites
- Python 3.10 or later: Download and install Python
- Docker and Docker Compose: Install Docker
- Poetry: Install Poetry
- MkDocs: Included in Poetry dependencies; no separate installation required.
Setting Up the Environment
graph TD
A[Clone Repository] --> B[Initialize Poetry]
B --> C[Create ENV Files]
C --> D[Invoke Tasks]
High-Level Folder Structure
infrastructure/
├── load_balancer/
│ ├── Dockerfile.dev
│ ├── haproxy.cfg
├── web_server/
│ ├── Dockerfile.dev
│ ├── app.py
├── nagios/
│ ├── etc/
│ ├── libexec/
mkdocs/
├── docs/
├── mkdocs.yml
docker-compose*.yml
pyproject.yml
poetry.lock
tasks.py
Steps to Start Docker Containers
1. Clone the Repository
2. Poetry Init
3. Create ENV Files
At the root level:
At infrastructure/nagios/:4. Invoke Tasks
Quick Access to Containers
Troubleshooting
Docker Compose Fails to Start
- Issue: Error:
Cannot connect to the Docker daemon
. - Solution: Ensure Docker is running:
sudo systemctl start docker
.
Poetry Command Not Found
- Issue: Poetry commands are not recognized.
- Solution: Add Poetry to your PATH:
export PATH="$HOME/.poetry/bin:$PATH"
.