-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/mit-27/Panora into add-auth…
…-credentials-feature
- Loading branch information
Showing
10 changed files
with
129 additions
and
24 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
.github/workflows/docker.check-build.backend.selfhosted.yml
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Compile Docker Images (Backend Selfhosted) | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
ENVIRONMENT: SELF_HOSTED | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Build and push Backend (API) | ||
uses: docker/build-push-action@v2 | ||
with: | ||
platforms: linux/amd64,linux/arm64 | ||
context: . | ||
file: ./packages/api/Dockerfile | ||
push: false | ||
tags: panoradotdev/backend-api:selfhosted | ||
build-args: | | ||
OAUTH_REDIRECT_BASE=${{ env.OAUTH_REDIRECT_BASE }} | ||
DISTRIBUTION=${{ env.DISTRIBUTION }} | ||
ENV=${{ ENV }} | ||
DATABASE_URL=postgresql://${{env.POSTGRES_USER}}:${{secrets.POSTGRES_PASSWORD}}@${{env.POSTGRES_HOST}}:5432/${{env.POSTGRES_DB}}?ssl=false | ||
JWT_SECRET=${{ secrets.JWT_SECRET }} | ||
REDIS_HOST=redis | ||
ENCRYPT_CRYPTO_SECRET_KEY=${{ secrets.ENCRYPT_CRYPTO_SECRET_KEY }} | ||
HUBSPOT_CLIENT_ID=${{ secrets.HUBSPOT_CLIENT_ID }} | ||
HUBSPOT_CLIENT_SECRET=${{ secrets.HUBSPOT_CLIENT_SECRET }} | ||
ZOHOCRM_CLIENT_ID=${{ secrets.ZOHOCRM_CLIENT_ID }} | ||
ZOHOCRM_CLIENT_SECRET=${{ secrets.ZOHOCRM_CLIENT_SECRET }} | ||
PIPEDRIVE_CLIENT_ID=${{ secrets.PIPEDRIVE_CLIENT_ID }} | ||
PIPEDRIVE_CLIENT_SECRET=${{ secrets.PIPEDRIVE_CLIENT_SECRET }} | ||
ZENDESK_CLIENT_ID=${{ secrets.ZENDESK_CLIENT_ID }} | ||
ZENDESK_CLIENT_SECRET=${{ secrets.ZENDESK_CLIENT_SECRET }} | ||
ZENDESK_TICKETING_CLIENT_ID=${{ secrets.ZENDESK_TICKETING_CLIENT_ID }} | ||
ZENDESK_TICKETING_CLIENT_SECRET=${{ secrets.ZENDESK_TICKETING_CLIENT_SECRET }} |
53 changes: 53 additions & 0 deletions
53
.github/workflows/docker.check-build.frontend.selfhosted.yml
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Compile Docker Images (Frontend Selfhosted) | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
ENVIRONMENT: SELF_HOSTED | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Build and push Frontend (Magic Links) | ||
uses: docker/build-push-action@v2 | ||
with: | ||
platforms: linux/amd64,linux/arm64 | ||
context: . | ||
file: ./apps/magic-link/Dockerfile | ||
push: false | ||
tags: panoradotdev/frontend-magic-links:selfhosted | ||
build-args: | | ||
VITE_BACKEND_DOMAIN=${{ secrets.VITE_BACKEND_DOMAIN }} | ||
- name: Build and push Frontend (Dashboard) | ||
uses: docker/build-push-action@v2 | ||
with: | ||
platforms: linux/amd64,linux/arm64 | ||
context: . | ||
file: ./apps/client-ts/Dockerfile | ||
push: true | ||
tags: panoradotdev/frontend-webapp:selfhosted | ||
build-args: | | ||
NEXT_PUBLIC_BACKEND_DOMAIN=${{ secrets.NEXT_PUBLIC_BACKEND_DOMAIN }} | ||
NEXT_PUBLIC_MAGIC_LINK_DOMAIN=${{ secrets.NEXT_PUBLIC_MAGIC_LINK_DOMAIN }} | ||
NEXT_PUBLIC_STYTCH_PROJECT_ID=${{ secrets.NEXT_PUBLIC_STYTCH_PROJECT_ID }} | ||
NEXT_PUBLIC_STYTCH_SECRET=${{ secrets.NEXT_PUBLIC_STYTCH_SECRET }} | ||
NEXT_PUBLIC_STYTCH_PROJECT_ENV=${{ secrets.NEXT_PUBLIC_STYTCH_PROJECT_ENV }} | ||
NEXT_PUBLIC_STYTCH_PUBLIC_TOKEN=${{ secrets.NEXT_PUBLIC_STYTCH_PUBLIC_TOKEN }} | ||
NEXT_PUBLIC_DISTRIBUTION=${{ env.DISTRIBUTION }} |
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 |
---|---|---|
|
@@ -4,9 +4,6 @@ on: | |
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
|
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 |
---|---|---|
|
@@ -4,9 +4,6 @@ on: | |
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
|
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
pnpm run build | ||
``` | ||
|
||
|
||
## Run | ||
|
||
``` | ||
|
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 |
---|---|---|
|
@@ -46,7 +46,19 @@ FROM base AS runner | |
WORKDIR /app | ||
|
||
COPY --from=installer ./app . | ||
WORKDIR /app/packages/api | ||
|
||
# # # # # # # # # # # # | ||
# Launching the backend | ||
# Maintain the root api folder as context (Breaking) | ||
CMD cd /app/packages/api && node dist/src/main.js | ||
# # # # # # # # # # # # | ||
# DEV: Maintain the /app/packages/api folder as context (Breaking) | ||
# # # # # # # # # # # # | ||
CMD node dist/src/main.js | ||
|
||
# # # # # # # # # # # # | ||
# Production: Injects env vars via Doppler - DOPPLER_TOKEN variable must be set | ||
# Install Doppler CLI | ||
# RUN wget -q -t3 'https://packages.doppler.com/public/cli/rsa.8004D9FF50437357.key' -O /etc/apk/keys/[email protected] && \ | ||
# echo 'https://packages.doppler.com/public/cli/alpine/any-version/main' | tee -a /etc/apk/repositories && \ | ||
# apk add doppler | ||
# CMD doppler run --command="node dist/src/main.js" |