Metadata-Version: 2.1
Name: nanourl
Version: 0.1.0
Description-Content-Type: text/markdown

# My project

run time dependencies instal Flask - framework - my computer communicates with the clients's one 
```sh
pip instal Flask 
```

for development:
```sh
pip install pytest pylint
```

```sh
pytest .
```

```sh
pylint *q.py
```

```sh
python main.py
```

install dependencies
```sh
pip install -r requirements.txt 
```

--tag - name the image
```sh
docker build --tag nanourl . 
```
-p -- port
```sh
docker run -p 5000:5000 nanourl 
```

```sh
curl http://localhost:5000 
```

