Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.github/
dist/
docs/
flows/
publish/
scripts/
services/
tests/
test-vectors/
vlei-server/
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: push-all, build, publish

VERSION=1.0.0
VERSION=1.0.1
IMAGE_NAME=gleif/vlei
LATEST_TAG=$(IMAGE_NAME):latest
VERSION_TAG=$(IMAGE_NAME):$(VERSION)
Expand All @@ -11,7 +11,6 @@ push-all:
build:
@docker build \
--platform=linux/amd64,linux/arm64 \
--no-cache \
-f container/Dockerfile \
--tag $(LATEST_TAG) \
--tag $(VERSION_TAG) \
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

setup(
name='vlei',
version='1.0.0', # also change in src/vlei/__init__.py
version='1.0.1', # also change in src/vlei/__init__.py
license='Apache Software License 2.0',
description='Verifiable Legal Entity Identifier',
long_description=long_description,
Expand Down Expand Up @@ -75,7 +75,7 @@
python_requires='>=3.12.6',
install_requires=[
'hio==0.6.14',
'keri>=1.2.6',
'keri>=1.2.7',
'falcon>=4.0.2',
'multicommand>=1.0.0'
],
Expand Down
2 changes: 1 addition & 1 deletion src/vlei/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- encoding: utf-8 -*-

__version__ = '1.0.0' # also change in setup.py
__version__ = '1.0.1' # also change in setup.py

3 changes: 2 additions & 1 deletion src/vlei/app/serving.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ def __init__(self, oobiDir):
for file in files:
p = Path(oobiDir, file)
url = p.open().read()
logger.info(f"serving well known {file}: {url}")
logger.info(f"serving well known {file}")
logger.debug(url)

def on_get(self, req, rep, alias):
"""
Expand Down