Skip to content

Commit 7d168fb

Browse files
committed
feat: add support for litestar
1 parent 828d185 commit 7d168fb

12 files changed

+12
-12
lines changed

frameworks/Python/litestar/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ the [Python README](../).
1010

1111
## Description
1212

13-
[**Litestar**](https://github.com/tiangolo/fastapi) is a modern, fast (high-performance), web framework for building APIs with Python 3.6+.
13+
[**Litestar**](https://github.com/litestar-org/litestar) is a modern, fast (high-performance), web framework for building APIs with Python 3.6+.
1414

1515
The key features are:
1616

frameworks/Python/litestar/litestar-gunicorn-orjson.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.13
22

3-
WORKDIR /fastapi
3+
WORKDIR /litestar
44

55
RUN python -m venv /opt/venv
66
ENV PATH="/opt/venv/bin:$PATH"

frameworks/Python/litestar/litestar-gunicorn-orm.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.13
22

3-
WORKDIR /fastapi
3+
WORKDIR /litestar
44

55
RUN python -m venv /opt/venv
66
ENV PATH="/opt/venv/bin:$PATH"

frameworks/Python/litestar/litestar-hypercorn-orjson.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.13
22

3-
WORKDIR /fastapi
3+
WORKDIR /litestar
44

55
RUN python -m venv /opt/venv
66
ENV PATH="/opt/venv/bin:$PATH"

frameworks/Python/litestar/litestar-hypercorn.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.13
22

3-
WORKDIR /fastapi
3+
WORKDIR /litestar
44

55
RUN python -m venv /opt/venv
66
ENV PATH="/opt/venv/bin:$PATH"

frameworks/Python/litestar/litestar-nginx-unit-orjson.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM nginx/unit:1.29.1-python3.13
22

3-
WORKDIR /fastapi
3+
WORKDIR /litestar
44

55
RUN python -m venv /opt/venv
66
ENV PATH="/opt/venv/bin:$PATH"

frameworks/Python/litestar/litestar-nginx-unit.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM nginx/unit:1.29.1-python3.13
22

3-
WORKDIR /fastapi
3+
WORKDIR /litestar
44

55
RUN python -m venv /opt/venv
66
ENV PATH="/opt/venv/bin:$PATH"

frameworks/Python/litestar/litestar-socketify-asgi-pypy.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM pypy:3.11-bookworm
22

3-
WORKDIR /fastapi
3+
WORKDIR /litestar
44

55
RUN python -m venv /opt/venv
66
ENV PATH="/opt/venv/bin:$PATH"

frameworks/Python/litestar/litestar-socketify-asgi.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.13-bullseye
22

3-
WORKDIR /fastapi
3+
WORKDIR /litestar
44

55
RUN python -m venv /opt/venv
66
ENV PATH="/opt/venv/bin:$PATH"

frameworks/Python/litestar/litestar-uvicorn-orjson.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.13
22

3-
WORKDIR /fastapi
3+
WORKDIR /litestar
44

55
RUN python -m venv /opt/venv
66
ENV PATH="/opt/venv/bin:$PATH"

0 commit comments

Comments
 (0)