Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
db78dda
chore: update quick start demo
Oct 28, 2024
b6ac809
changed and fixed on-chain structure
Oct 30, 2024
9102815
Finished Airdrop tutorial
ram-vidh Oct 30, 2024
a7f999b
tutorial added
ilvcs Oct 30, 2024
78861d6
Added Suggested Changes
ilvcs Nov 4, 2024
e425d45
minor fixes
ilvcs Nov 4, 2024
5a2d47f
minor fixes
ilvcs Nov 4, 2024
ab52242
Merge pull request #199 from ilvcs/onchain_verification
0xpulkit Nov 4, 2024
c1764d6
Crosschain verificaiton tutorial added
ilvcs Nov 4, 2024
a3bb61c
Updated tutorial.md
ilvcs Nov 4, 2024
3eb028b
Resolved merge conflicts
ilvcs Nov 5, 2024
559a23d
few changes in tutorial.md
ilvcs Nov 5, 2024
d0a154e
minor fixes
Nov 7, 2024
db542e3
chore: update web wallet screenshot
Nov 7, 2024
b5fd2db
chore:app id
Nov 7, 2024
5b1adb7
Merge pull request #215 from 0xPolygonID/agolia_search
0xpulkit Nov 7, 2024
01a3b8c
Merge pull request #207 from ilvcs/onchain-verification-ram-2
0xpulkit Nov 8, 2024
ab9de64
DEVOPS-1 Delete unused workflow. Update variable for Algolia
gseriche Nov 8, 2024
3fa73e1
Merge pull request #217 from 0xPolygonID/DEVOPS-1
gseriche Nov 8, 2024
3d4fdf0
DEVOPS-1 Fix mispelling command and improve the GitHub Action order
gseriche Nov 8, 2024
054142c
Merge pull request #218 from 0xPolygonID/DEVOPS-1
gseriche Nov 8, 2024
ce8f87c
DEVOPS-1 Fix variables missing with ECR
gseriche Nov 9, 2024
5bc4805
DEVOPS-1 Improve Dockerfile for security
gseriche Nov 9, 2024
e8af951
Merge pull request #219 from 0xPolygonID/DEVOPS-1
gseriche Nov 14, 2024
c513ca4
Small fixes
AndriianChestnykh Nov 15, 2024
c9de907
Mention the submitZKPResponseV2 method
AndriianChestnykh Nov 15, 2024
78a04f0
Added deployment scripts
ilvcs Nov 18, 2024
4c745bd
Merge branch 'onchain_verification' into onchain-verification-ram-2
0xpulkit Nov 18, 2024
0eb6259
Merge pull request #220 from ilvcs/onchain-verification-ram-2
0xpulkit Nov 18, 2024
e555228
minor fixes
Nov 18, 2024
af1cb6e
fix: fixes per comments
Nov 18, 2024
7efa036
minor fixes
Nov 18, 2024
ceeb8ae
Merge pull request #195 from 0xPolygonID/quick-start-demo
0xpulkit Nov 18, 2024
3ce469e
minor fix per comment
Nov 18, 2024
51cf3e8
Merge pull request #197 from 0xPolygonID/onchain_verification
0xpulkit Nov 18, 2024
3468684
chore: fixed search| created a new indexer
Nov 22, 2024
7438bd4
fix: ga_deployment
martinsaporiti Nov 25, 2024
c7d9ace
Merge pull request #223 from 0xPolygonID/fix_ga_env
martinsaporiti Nov 25, 2024
32a47f0
fix: dockerfile
martinsaporiti Nov 25, 2024
4854e78
Merge pull request #224 from 0xPolygonID/rollcakcdockerfile
martinsaporiti Nov 25, 2024
6e6c7b4
Merge pull request #222 from 0xPolygonID/agolia_search
0xpulkit Nov 25, 2024
4076d61
Merge branch 'main' into develop
0xpulkit Nov 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
ALGOLIA_API_KEY=213
ALGOLIA_APP_ID=XYZ
22 changes: 13 additions & 9 deletions .github/workflows/deployment_new_aws_account.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Polygon ID Docs Deployment
name: Privado ID Docs Deployment

on:
push:
Expand All @@ -8,6 +8,7 @@ on:

env:
AWS_REGION: ${{ secrets.AWS_DEFAULT_REGION }}
AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }}
ECR_REPOSITORY: devs-ecr
ECS_SERVICE: devs-ecs-service

Expand All @@ -26,8 +27,6 @@ jobs:

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
env:
AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }}
with:
aws-region: ${{ env.AWS_REGION }}
role-to-assume: arn:aws:iam::${{ env.AWS_ACCOUNT_ID }}:role/PolygonIDActionsRole
Expand All @@ -36,26 +35,31 @@ jobs:
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
with:
mask-password: 'true'

- name: Install dependencies
run: rm -rf node_modules && npm ci

- name: Create .env file
run: echo 'ALGOLIA_API_KEY=${{ secrets.ALGOLIA_API_KEY }}' >> .env
run: |
echo -e "ALGOLIA_API_KEY=${{ secrets.ALGOLIA_API_KEY }}" >> .env
echo -e "ALGOLIA_APP_ID=${{ secrets.ALGOLIA_APP_ID }}" >> .env
cat .env

# Runs a single command using the runners shell
- name: Build
run: npm run build

- name: Set ECR registry
run: echo "ECR_REGISTRY=${{ steps.login-ecr.outputs.registry }}" >> $GITHUB_ENV

- name: Build, tag, and push image to Amazon ECR
id: build-image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REGISTRY: ${{ env.ECR_REGISTRY }}
IMAGE_TAG: ${{ github.sha }}
run: |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
echo "Using ECR_REGISTRY=$ECR_REGISTRY"
echo "Using IMAGE_TAG=$IMAGE_TAG"
docker build --cache-from $ECR_REGISTRY/$ECR_REPOSITORY:latest -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT

Expand Down
82 changes: 0 additions & 82 deletions .github/workflows/prod_deployment.yml

This file was deleted.

82 changes: 0 additions & 82 deletions .github/workflows/staging_deployment.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80

# Start NGINX
CMD ["nginx", "-g", "daemon off;"]
CMD ["nginx", "-g", "daemon off;"]
Loading
Loading