Add cooler shell characters to README

This commit is contained in:
2025-02-07 21:38:48 +00:00
parent bdef658ccd
commit 18f0d94fc9

View File

@@ -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 <command>"
docker-compose --env-file=stack.env run --rm app sh -c ". /venv/bin/activate && python manage.py <command>"
```
## 🛑 Stopping GIA
To stop all running services:
```shell
make stop
make stop
```
## 🕵️‍♂️ Operational Modes