-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
131 changed files
with
4,756 additions
and
1,392 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
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,80 @@ | ||
name: Build and Publish Docker Images Prod | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.workflow }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
ever-teams-webapp: | ||
runs-on: buildjet-8vcpu-ubuntu-2204 | ||
Check warning on line 13 in .github/workflows/docker-build-publish.yml GitHub Actions / Cspell
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
load: true | ||
tags: | | ||
ghcr.io/ever-co/ever-teams-webapp:latest | ||
everco/ever-teams-webapp:latest | ||
registry.digitalocean.com/ever/ever-teams-webapp:latest | ||
${{ secrets.CW_DOCKER_REGISTRY }}/ever-co/ever-teams-webapp:latest | ||
cache-from: type=registry,ref=everco/ever-teams-webapp:latest | ||
cache-to: type=inline | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Push to Docker Hub Registry | ||
run: | | ||
docker push everco/ever-teams-webapp:latest | ||
- name: Install doctl | ||
uses: digitalocean/action-doctl@v2 | ||
with: | ||
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | ||
|
||
- name: Log in to DigitalOcean Container Registry with short-lived credentials | ||
run: doctl registry login --expiry-seconds 3600 | ||
|
||
- name: Push to DigitalOcean Registry | ||
run: | | ||
docker push registry.digitalocean.com/ever/ever-teams-webapp:latest | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GH_TOKEN }} | ||
|
||
- name: Push to Github Registry | ||
run: | | ||
docker push ghcr.io/ever-co/ever-teams-webapp:latest | ||
- name: Login to CW Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ secrets.CW_DOCKER_REGISTRY }} | ||
username: ${{ secrets.CW_DOCKER_USER }} | ||
password: ${{ secrets.CW_DOCKER_USER_PASSWORD }} | ||
|
||
- name: Push to CW Registry | ||
run: | | ||
docker push ${{ secrets.CW_DOCKER_REGISTRY }}/ever-co/ever-teams-webapp:latest |
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 |
---|---|---|
|
@@ -69,3 +69,6 @@ Thumbs.db | |
/apps/**/.cache | ||
/packages/**/.cache | ||
/packages/**/dist | ||
|
||
# Local Netlify folder | ||
.netlify |
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 @@ | ||
18.18.2 |
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 @@ | ||
18.18.2 |
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
File renamed without changes
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,38 +1,42 @@ | ||
{ | ||
"name": "@ever-teams/extensions", | ||
"displayName": "Ever Teams", | ||
"version": "0.1.0", | ||
"description": "Ever Teams Browser Extensions", | ||
"license": "UNLICENSED", | ||
"author": "Ever Co. LTD", | ||
"scripts": { | ||
"dev": "yarn plasmo dev", | ||
"start": "yarn dev", | ||
"build": "yarn plasmo build" | ||
}, | ||
"dependencies": { | ||
"@tailwindcss/forms": "^0.5.3", | ||
"@tailwindcss/typography": "^0.5.8", | ||
"classnames": "^2.3.2", | ||
"plasmo": "^0.59.1", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-timer-hook": "^3.0.5", | ||
"tailwindcss": "^3.2.4" | ||
}, | ||
"devDependencies": { | ||
"@plasmohq/prettier-plugin-sort-imports": "^3.6.0", | ||
"@types/chrome": "^0.0.203", | ||
"@types/node": "18.8.3", | ||
"@types/react": "18.0.21", | ||
"@types/react-dom": "18.0.6", | ||
"postcss": "^8.4.19", | ||
"prettier": "^2.8.0", | ||
"typescript": "4.8.4" | ||
}, | ||
"manifest": { | ||
"host_permissions": [ | ||
"https://*/*" | ||
] | ||
} | ||
"name": "@ever-teams/extensions", | ||
"displayName": "Ever Teams", | ||
"version": "0.1.0", | ||
"description": "Ever Teams Browser Extensions", | ||
"license": "UNLICENSED", | ||
"author": "Ever Co. LTD", | ||
"scripts": { | ||
"dev": "yarn plasmo dev", | ||
"start": "yarn dev", | ||
"build": "yarn plasmo build" | ||
}, | ||
"dependencies": { | ||
"@tailwindcss/forms": "^0.5.3", | ||
"@tailwindcss/typography": "^0.5.8", | ||
"classnames": "^2.3.2", | ||
"plasmo": "^0.59.1", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-timer-hook": "^3.0.5", | ||
"tailwindcss": "^3.2.4" | ||
}, | ||
"devDependencies": { | ||
"@plasmohq/prettier-plugin-sort-imports": "^3.6.0", | ||
"@types/chrome": "^0.0.203", | ||
"@types/node": "18.8.3", | ||
"@types/react": "18.0.21", | ||
"@types/react-dom": "18.0.6", | ||
"postcss": "^8.4.19", | ||
"prettier": "^2.8.0", | ||
"typescript": "4.8.4" | ||
}, | ||
"manifest": { | ||
"host_permissions": [ | ||
"https://*/*" | ||
] | ||
}, | ||
"engines": { | ||
"node": ">=16.0.0", | ||
"yarn": ">=1.13.0" | ||
} | ||
} |
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,9 +1,8 @@ | ||
# NOTE: do NOT ever put here any secure settings! (e.g. Secret Keys) | ||
# We are using react-native-dotenv (.env) | ||
|
||
GAUZY_API_URL= | ||
INVITE_CALLBACK_URL=https://app.ever.team/passcode | ||
|
||
GAUZY_API_URL=https://api.gauzy.co | ||
INVITE_CALLBACK_URL=https://app.ever.team/auth/passcode | ||
EXPO_PUBLIC_SENTRY_DSN= | ||
SENTRY_ORG= | ||
SENTRY_PROJECT= | ||
SENTRY_ORG=ever-co | ||
SENTRY_PROJECT=ever-teams-mobile |
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
Oops, something went wrong.