Skip to content

Commit 969bdcc

Browse files
authored
chore(web): rename back to beeai-web (#1426)
Signed-off-by: Petr Bulánek <bulanek.petr@gmail.com>
1 parent b4db974 commit 969bdcc

File tree

94 files changed

+53
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+53
-53
lines changed

.github/workflows/web.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: Agent Stack Web
1+
name: BeeAI Web
22

33
on:
44
push:
55
branches:
66
- main
77
paths:
8-
- 'apps/agentstack-web/**'
8+
- 'apps/beeai-web/**'
99

1010
permissions:
1111
contents: read
@@ -28,18 +28,18 @@ jobs:
2828
- uses: ./.github/actions/setup
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31-
- run: mise run 'agentstack-web:build:*'
31+
- run: mise run 'beeai-web:build:*'
3232
- uses: docker/build-push-action@v6
3333
with:
3434
context: .
35-
file: ./apps/agentstack-web/Dockerfile
35+
file: ./apps/beeai-web/Dockerfile
3636
push: true
37-
tags: ghcr.io/${{ github.repository }}/agentstack-web:${{ github.sha }},ghcr.io/${{ github.repository }}/agentstack-web:latest
37+
tags: ghcr.io/${{ github.repository }}/beeai-web:${{ github.sha }},ghcr.io/${{ github.repository }}/beeai-web:latest
3838

3939
deploy:
4040
needs: publish
4141
runs-on: [self-hosted]
4242
steps:
4343
- uses: azure/setup-kubectl@v4
44-
- run: kubectl set image deployment/agentstack-web agentstack-web=ghcr.io/${{ github.repository }}/agentstack-web:${{ github.sha }} -n ${{ secrets.CLUSTER_NAMESPACE }}
45-
- run: kubectl rollout status deployment/agentstack-web --timeout 5m -n ${{ secrets.CLUSTER_NAMESPACE }}
44+
- run: kubectl set image deployment/beeai-web beeai-web=ghcr.io/${{ github.repository }}/beeai-web:${{ github.sha }} -n ${{ secrets.CLUSTER_NAMESPACE }}
45+
- run: kubectl rollout status deployment/beeai-web --timeout 5m -n ${{ secrets.CLUSTER_NAMESPACE }}

apps/agentstack-web/Dockerfile

Lines changed: 0 additions & 11 deletions
This file was deleted.

apps/beeai-web/Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM node:22-alpine AS base
2+
COPY --chown=guest:guest ./apps/beeai-web/.next/standalone /workspace/
3+
COPY --chown=guest:guest ./apps/beeai-web/.next/static /workspace/apps/beeai-web/.next/static
4+
COPY --chown=guest:guest ./apps/beeai-web/public /workspace/apps/beeai-web/public
5+
USER guest
6+
ENV NEXT_TELEMETRY_DISABLED=1 \
7+
NODE_ENV=production \
8+
PORT=3000 \
9+
HOSTNAME="0.0.0.0"
10+
CMD ["node", "/workspace/apps/beeai-web/server.js"]
11+
EXPOSE 3000
Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)