Skip to content

Commit

Permalink
Merge pull request #658 from credebl/merge/qa-to-main
Browse files Browse the repository at this point in the history
merge: qa to main
  • Loading branch information
bhavanakarwade committed Apr 12, 2024
2 parents 415d13d + 66a3343 commit ce8af3b
Show file tree
Hide file tree
Showing 160 changed files with 16,353 additions and 5,435 deletions.
21 changes: 18 additions & 3 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
PUBLIC_BASE_URL=
PUBLIC_CRYPTO_PRIVATE_KEY=
PUBLIC_SUPABASE_URL=
PUBLIC_SUPABASE_KEY=
PUBLIC_SUPABASE_JWT_SECRET=

PUBLIC_SHOW_NAME_AS_LOGO= # Please provide true if you want to give platform name with logo

PUBLIC_PLATFORM_NAME= # Please specify your paltform name
PUBLIC_PLATFORM_LOGO= # Please specify your logo file link
PUBLIC_POWERED_BY= # Please specify your powered by org name
PUBLIC_PLATFORM_WEB_URL= # Please specify your platform web URL
PUBLIC_POWERED_BY_URL= # Please specify your support URL
PUBLIC_PLATFORM_DOCS_URL= # Please specify your documentation URL
PUBLIC_PLATFORM_GIT= # Please specify your Github URL
PUBLIC_PLATFORM_SUPPORT_EMAIL= # Please specify your support email
PUBLIC_PLATFORM_TWITTER_URL= # Please specify your twitter URL
PUBLIC_PLATFROM_DISCORD_SUPPORT= # Please specify your discord support url





33 changes: 33 additions & 0 deletions .github/workflows/deploy-qa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Deploy develop branch to Deno
on:
push:
branches: qa
pull_request:
branches: qa

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository

steps:
- name: Clone repository
uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*

- name: Build step
run: npm install && npm run build # 📝 Update the build command(s)

- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "credebl-studio-qa" # Project name in Deno Deploy
entrypoint: "server/entry.mjs" # 📝 Update the entrypoint
root: "dist"
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,9 @@ ui.env

# misc.
.dev*

# hidden files
._darcs
.bzr
.hg
BitKeeper
74 changes: 15 additions & 59 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"astro": "^2.9.0",
"axios": "^1.4.0",
"cookie": "^0.5.0",
"crypto-js": "^4.1.1",
"crypto-js": "^4.2.0",
"dom-to-image": "^2.6.0",
"downloadjs": "^1.4.7",
"flowbite": "^1.8.1",
Expand All @@ -57,7 +57,6 @@
"react": "^18.2.0",
"react-avatar": "^5.0.3",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.10.1",
"react-qr-code": "^2.0.11",
"react-select": "^5.8.0",
Expand Down
Loading

0 comments on commit ce8af3b

Please sign in to comment.