README: fixed tree; .gitignore: added .DS_Store exception

This commit is contained in:
2025-11-25 19:30:09 +03:00
parent 9d7d2a1ca4
commit 0754d613bc
2 changed files with 6 additions and 1 deletions

3
.gitignore vendored
View File

@@ -174,3 +174,6 @@ cython_debug/
# PyPI configuration file
.pypirc
# MacOS annoying file
.DS_Store

View File

@@ -15,13 +15,14 @@ This repository needs to be used as a template for all microservices that we are
## Folder structure:
```
microservice_name/
├── main.py # Entry point for your FastAPI application
├── requirements.txt # Python dependencies
├── Dockerfile.txt # Docker containerfile
├── README.md # Project documentation
├── README.md # Project documentation
├── .gitignore # Define what to ignore during version control
├── app/ # Application directory
@@ -68,6 +69,7 @@ microservice_name/
│ ├── test_endpoints.py
│ └── test_models.py
└── ...
```
### Some explainig: