Skip to content
Discussion options

You must be logged in to vote

As @facelessuser already pointed out, here is your example with indented blocks, which will preserve numbering:

## Installation Steps

1. Clone or download the repository.

1. Create a Python virtual environment and install the dependencies.

    ```bash
    python3 -m venv venv
    source venv/bin/activate
    pip install -r requirements.txt
    ```

1. Create a PostgreSQL database and user.

    ```bash
    sudo -u postgres psql
    CREATE DATABASE battleofmidgard;
    CREATE USER battleofmidgard WITH PASSWORD 'password';
    GRANT ALL PRIVILEGES ON DATABASE battleofmidgard TO battleofmidgard;
    ```

1. Make a copy of config.yml.example and rename it to config.yml.

    ```bash
    cp…

Replies: 2 comments 7 replies

Comment options

You must be logged in to vote
1 reply
@facelessuser
Comment options

Comment options

You must be logged in to vote
6 replies
@adambirds
Comment options

@facelessuser
Comment options

@facelessuser
Comment options

@adambirds
Comment options

@facelessuser
Comment options

Answer selected by squidfunk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants