Added README.md

Test build 0.1.1 with new help message.
This commit is contained in:
Aleksei Krugliak 2022-05-19 15:38:56 +04:00
parent 54d1d7d7ed
commit 4c334e0e32
2 changed files with 18 additions and 0 deletions

17
README.md Normal file
View File

@ -0,0 +1,17 @@
# [WIP]
# Build Image
```
$ sudo podman build -t expense-bot:0.1.0 .
```
# Push Image to registry
```
$ podman login quay.io
$ podman push [hash]|[localhost/expense-bot:0.1.0] docker://quay.io/ksemele/expense-bot:0.1.0
```
# Run bot
```
$ podman login quay.io
$ podman pull quay.io/ksemele/expense-bot
$ podman pull quay.io/ksemele/expense-bot:0.1.0
```

View File

@ -13,6 +13,7 @@ async def bot_help(message: types.Message):
"/edit - Edit expense.", "/edit - Edit expense.",
"/list - See my expenses.", "/list - See my expenses.",
"/settings - Configure bot.", "/settings - Configure bot.",
"/currencies - Get Official Georgian course",
"/test - Test command." "/test - Test command."
) )