-
Notifications
You must be signed in to change notification settings - Fork 225
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' into bug-fix-swift-query-docs
- Loading branch information
Showing
2,611 changed files
with
117,050 additions
and
20,068 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 |
---|---|---|
@@ -1,6 +1,12 @@ | ||
PUBLIC_APPWRITE_PROJECT_INIT_ID= | ||
PUBLIC_APPWRITE_PROJECT_ID= | ||
PUBLIC_APPWRITE_DB_MAIN_ID= | ||
PUBLIC_APPWRITE_COL_THREADS_ID= | ||
PUBLIC_APPWRITE_COL_MESSAGES_ID= | ||
PUBLIC_APPWRITE_FN_TLDR_ID= | ||
PUBLIC_APPWRITE_COL_THREADS_ID= | ||
PUBLIC_APPWRITE_DB_MAIN_ID= | ||
PUBLIC_APPWRITE_FN_TLDR_ID= | ||
PUBLIC_APPWRITE_ENDPOINT= | ||
PUBLIC_APPWRITE_PROJECT_ID= | ||
PUBLIC_APPWRITE_PROJECT_INIT_ID= | ||
PUBLIC_GROWTH_ENDPOINT= | ||
APPWRITE_DB_INIT_ID= | ||
APPWRITE_COL_INIT_ID= | ||
APPWRITE_API_KEY_INIT= | ||
SENTRY_AUTH_TOKEN= |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,23 +1,23 @@ | ||
name: Search Index | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
indexing: | ||
runs-on: ubuntu-latest | ||
name: Indexing | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: 'meilisearch/scrapix' | ||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20.x' | ||
- run: yarn | ||
- run: yarn start -c "$SCRAPIX_CONFIG" | ||
env: | ||
SCRAPIX_CONFIG: ${{ secrets.SCRAPIX_CONFIG }} | ||
indexing: | ||
runs-on: ubuntu-latest | ||
name: Indexing | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: 'meilisearch/scrapix' | ||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20.x' | ||
- run: yarn | ||
- run: yarn start -c "$SCRAPIX_CONFIG" | ||
env: | ||
SCRAPIX_CONFIG: ${{ secrets.SCRAPIX_CONFIG }} |
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,71 +1,79 @@ | ||
name: Production deployment | ||
|
||
on: | ||
release: | ||
types: [published] | ||
release: | ||
types: [published] | ||
|
||
env: | ||
TAG: ${{ github.event.release.tag_name }} | ||
STACK_FILE: docker/production.yml | ||
REPOSITORY: website | ||
REGISTRY_USERNAME: christyjacob4 | ||
TAG: ${{ github.event.release.tag_name }} | ||
STACK_FILE: docker/production.yml | ||
REPOSITORY: website | ||
REGISTRY_USERNAME: christyjacob4 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repo | ||
uses: actions/checkout@v2 | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
push: true | ||
tags: ghcr.io/appwrite/website:${{ env.TAG }} | ||
build-args: | | ||
"PUBLIC_APPWRITE_PROJECT_INIT_ID=${{ vars.PUBLIC_APPWRITE_PROJECT_INIT_ID }}" | ||
"PUBLIC_APPWRITE_PROJECT_ID=${{ vars.PUBLIC_APPWRITE_PROJECT_ID }}" | ||
"PUBLIC_APPWRITE_DB_MAIN_ID=${{ vars.PUBLIC_APPWRITE_DB_MAIN_ID }}" | ||
"PUBLIC_APPWRITE_COL_THREADS_ID=${{ vars.PUBLIC_APPWRITE_COL_THREADS_ID }}" | ||
"PUBLIC_APPWRITE_COL_MESSAGES_ID=${{ vars.PUBLIC_APPWRITE_COL_MESSAGES_ID }}" | ||
"PUBLIC_APPWRITE_FN_TLDR_ID=${{ vars.PUBLIC_APPWRITE_FN_TLDR_ID }}" | ||
- name: Build and push | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
push: true | ||
tags: ghcr.io/appwrite/website:${{ env.TAG }} | ||
build-args: | | ||
"PUBLIC_APPWRITE_ENDPOINT=${{ secrets.PUBLIC_APPWRITE_ENDPOINT }}" | ||
"PUBLIC_APPWRITE_DASHBOARD=${{ secrets.PUBLIC_APPWRITE_DASHBOARD }}" | ||
"PUBLIC_APPWRITE_PROJECT_ID=${{ vars.PUBLIC_APPWRITE_PROJECT_ID }}" | ||
"PUBLIC_APPWRITE_DB_MAIN_ID=${{ vars.PUBLIC_APPWRITE_DB_MAIN_ID }}" | ||
"PUBLIC_APPWRITE_COL_THREADS_ID=${{ vars.PUBLIC_APPWRITE_COL_THREADS_ID }}" | ||
"PUBLIC_APPWRITE_COL_MESSAGES_ID=${{ vars.PUBLIC_APPWRITE_COL_MESSAGES_ID }}" | ||
"PUBLIC_APPWRITE_FN_TLDR_ID=${{ vars.PUBLIC_APPWRITE_FN_TLDR_ID }}" | ||
"PUBLIC_APPWRITE_PROJECT_INIT_ID=${{ vars.PUBLIC_APPWRITE_PROJECT_INIT_ID }}" | ||
"PUBLIC_GROWTH_ENDPOINT=${{ vars.PUBLIC_GROWTH_ENDPOINT }}" | ||
"APPWRITE_DB_INIT_ID=${{ secrets.APPWRITE_DB_INIT_ID }}" | ||
"APPWRITE_COL_INIT_ID=${{ secrets.APPWRITE_COL_INIT_ID }}" | ||
"APPWRITE_API_KEY_INIT=${{ secrets.APPWRITE_API_KEY_INIT }}" | ||
"GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" | ||
"SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}" | ||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Execute SSH commands | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.PRD_SSH_HOST }} | ||
username: ${{ secrets.PRD_SSH_USERNAME }} | ||
key: ${{ secrets.PRD_SSH_KEY }} | ||
script: | | ||
url="https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/appwrite/${{ env.REPOSITORY }}.git" | ||
if ! git clone "${url}" "${{ env.REPOSITORY }}" 2>/dev/null && [ -d "${{ env.REPOSITORY }}" ] ; then | ||
echo "Clone failed because the folder ${{ env.REPOSITORY }} exists" | ||
fi | ||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Execute SSH commands | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.PRD_SSH_HOST }} | ||
username: ${{ secrets.PRD_SSH_USERNAME }} | ||
key: ${{ secrets.PRD_SSH_KEY }} | ||
script: | | ||
url="https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/appwrite/${{ env.REPOSITORY }}.git" | ||
if ! git clone "${url}" "${{ env.REPOSITORY }}" 2>/dev/null && [ -d "${{ env.REPOSITORY }}" ] ; then | ||
echo "Clone failed because the folder ${{ env.REPOSITORY }} exists" | ||
fi | ||
cd ${{ env.REPOSITORY }} | ||
git reset --hard HEAD | ||
git remote set-url origin $url | ||
git fetch origin | ||
git checkout ${{ env.TAG }} | ||
cd ${{ env.REPOSITORY }} | ||
git reset --hard HEAD | ||
git remote set-url origin $url | ||
git fetch origin | ||
git checkout ${{ env.TAG }} | ||
rm -f .env | ||
echo "_APP_VERSION=${{ env.TAG }}" >> .env | ||
echo "_APP_DOMAIN=${{ secrets.PRD_APP_DOMAIN }}" >> .env | ||
echo "_APP_SYSTEM_SECURITY_EMAIL_ADDRESS=${{ secrets.APP_SYSTEM_SECURITY_EMAIL_ADDRESS }}" >> .env | ||
echo "SEMATEXT_TOKEN=${{ secrets.SEMATEXT_TOKEN }}" >> .env | ||
rm -f .env | ||
echo "_APP_VERSION=${{ env.TAG }}" >> .env | ||
echo "_APP_DOMAIN=${{ secrets.PRD_APP_DOMAIN }}" >> .env | ||
echo "_APP_SYSTEM_SECURITY_EMAIL_ADDRESS=${{ secrets.APP_SYSTEM_SECURITY_EMAIL_ADDRESS }}" >> .env | ||
echo "SEMATEXT_TOKEN=${{ secrets.SEMATEXT_TOKEN }}" >> .env | ||
echo ${{ secrets.GH_REGISTRY_TOKEN }} | docker login ghcr.io --username ${{ env.REGISTRY_USERNAME }} --password-stdin | ||
docker-compose -f ${{ env.STACK_FILE }} config | ||
env $(cat .env | xargs) docker stack deploy --prune --resolve-image always --with-registry-auth -c ${{ env.STACK_FILE }} ${{ env.REPOSITORY }} | ||
echo ${{ secrets.GH_REGISTRY_TOKEN }} | docker login ghcr.io --username ${{ env.REGISTRY_USERNAME }} --password-stdin | ||
docker-compose -f ${{ env.STACK_FILE }} config | ||
env $(cat .env | xargs) docker stack deploy --prune --resolve-image always --with-registry-auth -c ${{ env.STACK_FILE }} ${{ env.REPOSITORY }} |
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,72 +1,81 @@ | ||
name: Staging deployment | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
TAG: ${{ github.sha }} | ||
STACK_FILE: docker/stage.yml | ||
REPOSITORY: website | ||
REGISTRY_USERNAME: christyjacob4 | ||
TAG: ${{ github.sha }} | ||
STACK_FILE: docker/stage.yml | ||
REPOSITORY: website | ||
REGISTRY_USERNAME: christyjacob4 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repo | ||
uses: actions/checkout@v2 | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
push: true | ||
tags: ghcr.io/appwrite/website:${{ env.TAG }} | ||
build-args: | | ||
"PUBLIC_APPWRITE_PROJECT_INIT_ID=${{ vars.PUBLIC_APPWRITE_PROJECT_INIT_ID }}" | ||
"PUBLIC_APPWRITE_PROJECT_ID=${{ vars.PUBLIC_APPWRITE_PROJECT_ID }}" | ||
"PUBLIC_APPWRITE_DB_MAIN_ID=${{ vars.PUBLIC_APPWRITE_DB_MAIN_ID }}" | ||
"PUBLIC_APPWRITE_COL_THREADS_ID=${{ vars.PUBLIC_APPWRITE_COL_THREADS_ID }}" | ||
"PUBLIC_APPWRITE_COL_MESSAGES_ID=${{ vars.PUBLIC_APPWRITE_COL_MESSAGES_ID }}" | ||
"PUBLIC_APPWRITE_FN_TLDR_ID=${{ vars.PUBLIC_APPWRITE_FN_TLDR_ID }}" | ||
- name: Build and push | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
push: true | ||
tags: ghcr.io/appwrite/website:${{ env.TAG }} | ||
build-args: | | ||
"PUBLIC_APPWRITE_ENDPOINT=${{ secrets.PUBLIC_APPWRITE_ENDPOINT }}" | ||
"PUBLIC_APPWRITE_DASHBOARD=${{ secrets.PUBLIC_APPWRITE_DASHBOARD }}" | ||
"PUBLIC_APPWRITE_PROJECT_ID=${{ vars.PUBLIC_APPWRITE_PROJECT_ID }}" | ||
"PUBLIC_APPWRITE_DB_MAIN_ID=${{ vars.PUBLIC_APPWRITE_DB_MAIN_ID }}" | ||
"PUBLIC_APPWRITE_COL_THREADS_ID=${{ vars.PUBLIC_APPWRITE_COL_THREADS_ID }}" | ||
"PUBLIC_APPWRITE_COL_MESSAGES_ID=${{ vars.PUBLIC_APPWRITE_COL_MESSAGES_ID }}" | ||
"PUBLIC_APPWRITE_FN_TLDR_ID=${{ vars.PUBLIC_APPWRITE_FN_TLDR_ID }}" | ||
"PUBLIC_APPWRITE_PROJECT_INIT_ID=${{ vars.PUBLIC_APPWRITE_PROJECT_INIT_ID }}" | ||
"PUBLIC_GROWTH_ENDPOINT=${{ vars.PUBLIC_GROWTH_ENDPOINT }}" | ||
"APPWRITE_DB_INIT_ID=${{ secrets.APPWRITE_DB_INIT_ID }}" | ||
"APPWRITE_COL_INIT_ID=${{ secrets.APPWRITE_COL_INIT_ID }}" | ||
"APPWRITE_API_KEY_INIT=${{ secrets.APPWRITE_API_KEY_INIT }}" | ||
"GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" | ||
"SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}" | ||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Execute SSH commands | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.STG_SSH_HOST }} | ||
username: ${{ secrets.STG_SSH_USERNAME }} | ||
key: ${{ secrets.STG_SSH_KEY }} | ||
script: | | ||
url="https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/appwrite/${{ env.REPOSITORY }}.git" | ||
if ! git clone "${url}" "${{ env.REPOSITORY }}" 2>/dev/null && [ -d "${{ env.REPOSITORY }}" ] ; then | ||
echo "Clone failed because the folder ${{ env.REPOSITORY }} exists" | ||
fi | ||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Execute SSH commands | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.STG_SSH_HOST }} | ||
username: ${{ secrets.STG_SSH_USERNAME }} | ||
key: ${{ secrets.STG_SSH_KEY }} | ||
script: | | ||
url="https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/appwrite/${{ env.REPOSITORY }}.git" | ||
if ! git clone "${url}" "${{ env.REPOSITORY }}" 2>/dev/null && [ -d "${{ env.REPOSITORY }}" ] ; then | ||
echo "Clone failed because the folder ${{ env.REPOSITORY }} exists" | ||
fi | ||
cd ${{ env.REPOSITORY }} | ||
git reset --hard HEAD | ||
git remote set-url origin $url | ||
git fetch origin | ||
git checkout ${{ env.TAG }} | ||
cd ${{ env.REPOSITORY }} | ||
git reset --hard HEAD | ||
git remote set-url origin $url | ||
git fetch origin | ||
git checkout ${{ env.TAG }} | ||
rm -f .env | ||
echo "_APP_VERSION=${{ env.TAG }}" >> .env | ||
echo "_APP_DOMAIN=${{ secrets.STG_APP_DOMAIN }}" >> .env | ||
echo "_APP_SYSTEM_SECURITY_EMAIL_ADDRESS=${{ secrets.APP_SYSTEM_SECURITY_EMAIL_ADDRESS }}" >> .env | ||
echo "SEMATEXT_TOKEN=${{ secrets.SEMATEXT_TOKEN }}" >> .env | ||
rm -f .env | ||
echo "_APP_VERSION=${{ env.TAG }}" >> .env | ||
echo "_APP_DOMAIN=${{ secrets.STG_APP_DOMAIN }}" >> .env | ||
echo "_APP_SYSTEM_SECURITY_EMAIL_ADDRESS=${{ secrets.APP_SYSTEM_SECURITY_EMAIL_ADDRESS }}" >> .env | ||
echo "SEMATEXT_TOKEN=${{ secrets.SEMATEXT_TOKEN }}" >> .env | ||
echo ${{ secrets.GH_REGISTRY_TOKEN }} | docker login ghcr.io --username ${{ env.REGISTRY_USERNAME }} --password-stdin | ||
docker-compose -f ${{ env.STACK_FILE }} config | ||
env $(cat .env | xargs) docker stack deploy --prune --resolve-image always --with-registry-auth -c ${{ env.STACK_FILE }} ${{ env.REPOSITORY }} | ||
echo ${{ secrets.GH_REGISTRY_TOKEN }} | docker login ghcr.io --username ${{ env.REGISTRY_USERNAME }} --password-stdin | ||
docker-compose -f ${{ env.STACK_FILE }} config | ||
env $(cat .env | xargs) docker stack deploy --prune --resolve-image always --with-registry-auth -c ${{ env.STACK_FILE }} ${{ env.REPOSITORY }} |
Oops, something went wrong.