Skip to content
Merged

V1.1 #109

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/deployer_1.1-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <aliamer19ali@gmail.com>"
# Install required OS packages including Python
RUN apk add --no-cache libc6-compat python3 py3-pip
Expand Down Expand Up @@ -47,4 +47,4 @@ EXPOSE 8080

USER nextjs

ENTRYPOINT ["docker-entrypoint.sh"]
ENTRYPOINT ["docker-entrypoint.sh"]
6 changes: 6 additions & 0 deletions lib/Plans.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}

Expand Down
Loading