This is a simple app which shows current time at Moscow.
Clone this repository Go to the app_python file Install Poetry package manager
cd app_python
pip install poetry
poetry installWe will run our application using Poetry package manager
poetry run python main.pyAlso we have an opportunity to run this app using docker. Firstly, we need to download our docker image from dockerhub
sudo docker pull gapurinov/simple-appThen we need to run this docker image with command:
sudo docker run -p 5000:5000 gapurinov/simple-appFinally you can open 'http://127.0.0.1:5000/' on your browser.