@@ -90,9 +90,9 @@ An example of .env file:
9090You can read more about BaseSettings class here: https://pydantic-docs.helpmanual.io/usage/settings/
9191
9292{%- if cookiecutter.otlp_enabled == " True" %}
93- # # Opentelemetry
93+ # # OpenTelemetry
9494
95- If you want to start your project with opentelemetry collector
95+ If you want to start your project with OpenTelemetry collector
9696you can add ` -f ./deploy/docker-compose.otlp.yml` to your docker command.
9797
9898Like this:
@@ -101,14 +101,14 @@ Like this:
101101docker-compose -f deploy/docker-compose.yml -f deploy/docker-compose.otlp.yml --project-directory . up
102102` ` `
103103
104- This command will start opentelemetry collector and jaeger.
104+ This command will start OpenTelemetry collector and jaeger.
105105After sending a requests you can see traces in jaeger' s UI
106106at http://localhost:16686/.
107107
108108This docker configuration is not supposed to be used in production.
109109It' s only for demo purpose.
110110
111- You can read more about opentelemetry here: https://opentelemetry.io/
111+ You can read more about OpenTelemetry here: https://opentelemetry.io/
112112{%- endif %}
113113
114114# # Pre-commit
@@ -125,7 +125,7 @@ By default it runs:
125125* black (formats your code);
126126* mypy (validates types);
127127* isort (sorts imports in all files);
128- * flake8 (spots possibe bugs);
128+ * flake8 (spots possible bugs);
129129
130130
131131You can read more about pre-commit here: https://pre-commit.com/
0 commit comments