diff --git a/README.md b/README.md index 574ecfc..42da711 100644 --- a/README.md +++ b/README.md @@ -21,36 +21,36 @@ GIA runs inside **Podman containers**. Ensure you have **Podman** and **Podman C 1. **Clone the repository** ```shell - git clone https://github.com/your-repo/gia.git - cd gia + ❯ git clone https://github.com/your-repo/gia.git + ❯ cd gia ``` 2. Set up the environment variables ```shell - cp stack.env.example stack.env + ❯ cp stack.env.example stack.env ``` 3. Edit `stack.env` 4. Build and start the containers ```shell - make build - make run + ❯ make build + ❯ make run ``` 5. Run database migrations ```shell - make migrate + ❯ make migrate ``` 6. Create a superuser for Django Admin (optional but recommended) ```shell - make auth + ❯ make auth ``` 7. Monitor logs ```shell - make log + ❯ make log ``` ## ⚙️ Deployment & Architecture @@ -70,13 +70,13 @@ GIA runs inside **Podman containers**. Ensure you have **Podman** and **Podman C You can execute management commands inside the app container using: ```shell - docker-compose --env-file=stack.env run --rm app sh -c ". /venv/bin/activate && python manage.py " + ❯ docker-compose --env-file=stack.env run --rm app sh -c ". /venv/bin/activate && python manage.py " ``` ## 🛑 Stopping GIA To stop all running services: ```shell - make stop + ❯ make stop ``` ## 🕵️‍♂️ Operational Modes