pyvckit #1

Merged
cayop merged 17 commits from pyvckit into release 2024-06-11 15:10:32 +00:00
1 changed files with 4 additions and 8 deletions
Showing only changes of commit 32ad6edd9d - Show all commits

View File

@ -31,23 +31,19 @@ The application's backend is responsible for issuing credentials upun user reque
python -m venv venv python -m venv venv
source venv/bin/activate source venv/bin/activate
``` ```
3. Install the DIDKit wheel 3. Install the required packages:
```
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:
``` ```
pip install -r requirements.txt pip install -r requirements.txt
``` ```
5. Run migrations: 4. Run migrations:
``` ```
python manage.py migrate 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 python manage.py initial_datas
``` ```
7. Start the development server: 6. Start the development server:
``` ```
python manage.py runserver python manage.py runserver
``` ```