Skip to content

Commit

Permalink
Merge branch 'main' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
dersmon committed Jul 19, 2024
2 parents 4fc8bd8 + 0d7c831 commit 0784765
Show file tree
Hide file tree
Showing 13 changed files with 182 additions and 168 deletions.
17 changes: 9 additions & 8 deletions .env.template
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# use 'stable' for production deployment
ARACHNE_IMAGE_VERSION=latest
# remove when using external db
COMPOSE_PROFILES=with-db
ARACHNE_FRONTEND_IMAGE_VERSION=latest
ARACHNE_BACKEND_IMAGE_VERSION=latest

# may be set to external db server
DB_SERVER=db
DB_ROOT_PASSWORD=
DB_PASSWORD=

SERVER_ADDRESS=localhost:8080
SMTP_USER_NAME=
SMTP_USER_PASSWORD=

ARCHAEOCLOUD_PASSWORD=
SERVER_ADDRESS=
HOST_NAME=

ARCHAEOCLOUD_PATH=/mnt/cephfs/archaeocloud/

AIAX_VERSION=latest
AIAX_DATA_DIR=./aiax-data
AIAX_DATA_DIR=./aiax-data
4 changes: 3 additions & 1 deletion .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
branches:
- main
- stable
- gwdg_deployment
- cologne_deployment

defaults:
run:
Expand Down Expand Up @@ -38,5 +40,5 @@ jobs:
with:
context: "backend"
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref == 'refs/heads/stable' && 'stable' || 'latest' }}
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}
labels: ${{ steps.meta.outputs.labels }}
2 changes: 1 addition & 1 deletion .github/workflows/frontend-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ jobs:
with:
context: "frontend"
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref == 'refs/heads/stable' && 'stable' || 'latest' }}
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}
labels: ${{ steps.meta.outputs.labels }}
build-args: BUILD_NO=${{ github.run_number }}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.env
letsencrypt/
aiax-data/
aiax-data/
db_data/
Loading

0 comments on commit 0784765

Please sign in to comment.