-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump @babel/traverse from 7.23.0 to 7.23.2 in /frontend Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.23.0 to 7.23.2. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.2/packages/babel-traverse) --- updated-dependencies: - dependency-name: "@babel/traverse" dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * fix build * fix build * allow-empty * fix server and build * fix feedback * fix feedback * fix keys * remove login * fix actions * empty commit * empty commit --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c1a86d8
commit 3c85549
Showing
13 changed files
with
56 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,14 +36,14 @@ jobs: | |
HOST=$(printf "pr-%s.%s" ${{ github.event.number }} ${{ vars.HOST }}) | ||
IMAGE_TAG=$(printf "pr-%s" ${{ github.event.number }}) | ||
DB_PORT=$(printf "%d" $(expr 20000 + $PULL_REQUEST_NUMBER)) | ||
DB_NAME=$(printf "simbolik-db-pr-%s" $PULL_REQUEST_NUMBER) | ||
DB_NAME=$(printf "kasmer-db-pr-%s" $PULL_REQUEST_NUMBER) | ||
echo "HOST=$HOST" >> $GITHUB_OUTPUT | ||
echo "DB_PORT=$DB_PORT" >> $GITHUB_OUTPUT | ||
echo "DB_NAME=$DB_NAME" >> $GITHUB_OUTPUT | ||
echo "FRONTEND_PORT=$FRONTEND_PORT" >> $GITHUB_OUTPUT | ||
echo "BACKEND_PORT=$BACKEND_PORT" >> $GITHUB_OUTPUT | ||
echo "HOST=$HOST" >> $GITHUB_OUTPUT | ||
echo "IMAGE_PREFIX=ghcr.io/runtimeverification/simbolik" >> $GITHUB_OUTPUT | ||
echo "IMAGE_PREFIX=ghcr.io/runtimeverification/kasmer" >> $GITHUB_OUTPUT | ||
echo "IMAGE_TAG=$IMAGE_TAG" >> $GITHUB_OUTPUT | ||
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) | ||
nginx_main_config="$(cat ${{ github.workspace }}/configs/nginx/nginx.conf)" | ||
|
@@ -102,8 +102,8 @@ jobs: | |
script: | | ||
source "/home/ubuntu/.acme.sh/acme.sh.env" | ||
PULL_REQUEST_NAME=$(printf "pr-%s" ${{ github.event.number }}) | ||
mkdir -p ~/opt/deployments/simbolik-$PULL_REQUEST_NAME | ||
cd ~/opt/deployments/simbolik-$PULL_REQUEST_NAME | ||
mkdir -p ~/opt/deployments/kasmer-$PULL_REQUEST_NAME | ||
cd ~/opt/deployments/kasmer-$PULL_REQUEST_NAME | ||
# Frontend | ||
docker pull ${{ needs.build.outputs.IMAGE_PREFIX }}/frontend:$PULL_REQUEST_NAME | ||
|
@@ -145,7 +145,7 @@ jobs: | |
--name kasmer-backend-$PULL_REQUEST_NAME \ | ||
-d --restart=always \ | ||
--network=${{ needs.build.outputs.DB_NAME }} \ | ||
-e DATABASE_URL="postgresql://${{ secrets.DB_USER }}:${{ secrets.DB_PASSWORD }}@${{ needs.build.outputs.DB_NAME }}/simbolik?schema=$PULL_REQUEST_NAME&connection_limit=40&pool_timeout=30" \ | ||
-e DATABASE_URL="postgresql://${{ secrets.DB_USER }}:${{ secrets.DB_PASSWORD }}@${{ needs.build.outputs.DB_NAME }}/postgres?schema=$PULL_REQUEST_NAME&connection_limit=40&pool_timeout=30" \ | ||
-e FRONTEND_URL=https://${{ needs.build.outputs.HOST }} \ | ||
-e GITHUB_CLIENT_ID=${{ secrets.GH_CLIENT_ID }} \ | ||
-e GITHUB_CLIENT_SECRET=${{ secrets.GH_CLIENT_SECRET }} \ | ||
|
@@ -154,8 +154,8 @@ jobs: | |
-e GOOGLE_CLIENT_ID=${{ secrets.GOOGLE_CLIENT_ID }} \ | ||
-e GOOGLE_CLIENT_SECRET=${{ secrets.GOOGLE_CLIENT_SECRET }} \ | ||
-e GOOGLE_CALLBACK_HOST=${{ needs.build.outputs.HOST }} \ | ||
-e EMAIL_HOST=${{ vars.EMAIL_HOST }} \ | ||
-e EMAIL_USER=${{ vars.EMAIL_USER }} \ | ||
-e EMAIL_HOST=${{ secrets.EMAIL_HOST }} \ | ||
-e EMAIL_USER=${{ secrets.EMAIL_USER }} \ | ||
-e BRANCH_NAME=$PULL_REQUEST_NAME \ | ||
-e EMAIL_PASSWORD=${{ secrets.EMAIL_PASSWORD }} \ | ||
-e JWT_SECRET=${{ secrets.JWT_SECRET }} \ | ||
|
@@ -263,6 +263,6 @@ jobs: | |
uses: bots-house/[email protected] | ||
with: | ||
owner: ${{ github.repository_owner }} | ||
name: kasmer/frontend | ||
name: kasmer/web | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
untagged-keep-latest: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,7 +113,7 @@ jobs: | |
${{ needs.build.outputs.FRONTEND_IMAGE_URL }} | ||
# Backend | ||
DATABASE_URL=$(printf "postgresql://%s:%s@%s/%s/simbolik?schema=${{ github.ref_name }}&connection_limit=40&pool_timeout=30" \ | ||
DATABASE_URL=$(printf "postgresql://%s:%s@%s/%s/kasmer?schema=${{ github.ref_name }}&connection_limit=40&pool_timeout=30" \ | ||
${{ secrets.DB_USER }} \ | ||
${{ secrets.DB_PASSWORD }} \ | ||
${{ secrets.DB_HOST_PORT }} \ | ||
|
@@ -136,8 +136,8 @@ jobs: | |
-e GOOGLE_CLIENT_ID=${{ secrets.GOOGLE_CLIENT_ID }} \ | ||
-e GOOGLE_CLIENT_SECRET=${{ secrets.GOOGLE_CLIENT_SECRET }} \ | ||
-e GOOGLE_CALLBACK_HOST=${{ needs.build.outputs.HOST }} \ | ||
-e EMAIL_HOST=${{ vars.EMAIL_HOST }} \ | ||
-e EMAIL_USER=${{ vars.EMAIL_USER }} \ | ||
-e EMAIL_HOST=${{ secrets.EMAIL_HOST }} \ | ||
-e EMAIL_USER=${{ secrets.EMAIL_USER }} \ | ||
-e BRANCH_NAME=${{ github.ref_name }} \ | ||
-e EMAIL_PASSWORD=${{ secrets.EMAIL_PASSWORD }} \ | ||
-e JWT_SECRET=${{ secrets.JWT_SECRET }} \ | ||
|
@@ -245,6 +245,6 @@ jobs: | |
uses: bots-house/[email protected] | ||
with: | ||
owner: ${{ github.repository_owner }} | ||
name: kasmer/frontend | ||
name: kasmer/web | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
untagged-keep-latest: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
module.exports = { | ||
siteUrl: | ||
process.env.NEXT_PUBLIC_SITE_URL || 'https://simbolik.runtimeverification.com', | ||
process.env.NEXT_PUBLIC_SITE_URL || | ||
'https://kasmer.runtimeverification.com', | ||
generateRobotsTxt: true, | ||
exclude: ['/account', '/access-token'] | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.