From afd771fb50a385bff5004913bac8cbcf4886065a Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Fri, 7 Jun 2024 14:07:59 +0200 Subject: [PATCH] fix README --- README.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 38056d7..353f7b4 100644 --- a/README.md +++ b/README.md @@ -31,23 +31,19 @@ The application's backend is responsible for issuing credentials upun user reque python -m venv venv source venv/bin/activate ``` -3. Install the DIDKit wheel - ``` - wget https://gitea.pangea.org/trustchain-oc1-orchestral/ssikit_trustchain/raw/branch/master/didkit-0.3.2-cp311-cp311-manylinux_2_34_x86_64.whl - ``` -4. Install the required packages: +3. Install the required packages: ``` pip install -r requirements.txt ``` -5. Run migrations: +4. Run migrations: ``` python manage.py migrate ``` -6. Optionally you can install a minumum data set: +5. Optionally you can install a minumum data set: ``` python manage.py initial_datas ``` -7. Start the development server: +6. Start the development server: ``` python manage.py runserver ```