From a1ae86ae0a830cb6b107e9503b14b1bc52840614 Mon Sep 17 00:00:00 2001 From: Ali Amer <76897266+aliamerj@users.noreply.github.com> Date: Sun, 18 May 2025 17:32:09 +0300 Subject: [PATCH 1/3] Update Plans.ts Signed-off-by: Ali Amer <76897266+aliamerj@users.noreply.github.com> --- lib/Plans.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/Plans.ts b/lib/Plans.ts index 055be23..736e72e 100644 --- a/lib/Plans.ts +++ b/lib/Plans.ts @@ -9,31 +9,37 @@ export const Plans = { connections: 1, pages: 10, retrievals: 20, + price: 0 }, BASIC: { connections: 10, pages: 50, retrievals: 250, + price: 14.99 }, PRO: { connections: Infinity, pages: 100, retrievals: 500, + price: 29.99 }, BUSINESS: { connections: Infinity, pages: 5_000, retrievals: 10_000, + price: 59.99, }, ENTERPRISE: { connections: Infinity, pages: 10_000, retrievals: Infinity, + price: 399.99, }, OS: { connections: Infinity, pages: Infinity, retrievals: Infinity, + price: 0, } } From 0229483996c995999ae789595bb742b6387e5933 Mon Sep 17 00:00:00 2001 From: Ali Amer <76897266+aliamerj@users.noreply.github.com> Date: Sun, 18 May 2025 17:41:23 +0300 Subject: [PATCH 2/3] Update deployer_1.1-beta.yml Signed-off-by: Ali Amer <76897266+aliamerj@users.noreply.github.com> --- .github/workflows/deployer_1.1-beta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deployer_1.1-beta.yml b/.github/workflows/deployer_1.1-beta.yml index 9e9318c..8253dfb 100644 --- a/.github/workflows/deployer_1.1-beta.yml +++ b/.github/workflows/deployer_1.1-beta.yml @@ -53,13 +53,13 @@ jobs: - name: Build and Push Docker image run: | # Build Docker image and tag it with the current commit SHA - docker build -t ghcr.io/dcup-dev/dcup:v1.1.0-beta . + docker build -t ghcr.io/dcup-dev/dcup:v1.1.2-beta . # Push the image to GitHub Container Registry - docker push ghcr.io/dcup-dev/dcup:v1.1.0-beta + docker push ghcr.io/dcup-dev/dcup:v1.1.2-beta # Optionally, tag the image with the "latest" tag for easy access - docker tag ghcr.io/dcup-dev/dcup:v1.1.0-beta ghcr.io/dcup-dev/dcup:latest + docker tag ghcr.io/dcup-dev/dcup:v1.1.2-beta ghcr.io/dcup-dev/dcup:latest docker push ghcr.io/dcup-dev/dcup:latest - name: Logout from Docker From 13f4383fe225c63740f281502e60f0fa76b97188 Mon Sep 17 00:00:00 2001 From: Ali Amer <76897266+aliamerj@users.noreply.github.com> Date: Sun, 18 May 2025 17:42:55 +0300 Subject: [PATCH 3/3] Update Dockerfile Signed-off-by: Ali Amer <76897266+aliamerj@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2241a8f..8c4cfc8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.source="https://github.com/Dcup-dev/dcup" LABEL org.opencontainers.image.description="Dcup RAG-as-a-Service platform" LABEL org.opencontainers.image.licenses="GPL-3.0" LABEL org.opencontainers.image.title="Dcup RAG-as-a-Service" -LABEL org.opencontainers.image.version="v1.1.0-beta" +LABEL org.opencontainers.image.version="v1.1.2-beta" LABEL org.opencontainers.image.authors="Ali Amer " # Install required OS packages including Python RUN apk add --no-cache libc6-compat python3 py3-pip @@ -47,4 +47,4 @@ EXPOSE 8080 USER nextjs -ENTRYPOINT ["docker-entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["docker-entrypoint.sh"]