Skip to content

Commit ce8af3b

Browse files
Merge pull request #658 from credebl/merge/qa-to-main
merge: qa to main
2 parents 415d13d + 66a3343 commit ce8af3b

File tree

160 files changed

+16353
-5435
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+16353
-5435
lines changed

.env.sample

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
PUBLIC_BASE_URL=
22
PUBLIC_CRYPTO_PRIVATE_KEY=
3-
PUBLIC_SUPABASE_URL=
4-
PUBLIC_SUPABASE_KEY=
5-
PUBLIC_SUPABASE_JWT_SECRET=
3+
4+
PUBLIC_SHOW_NAME_AS_LOGO= # Please provide true if you want to give platform name with logo
5+
6+
PUBLIC_PLATFORM_NAME= # Please specify your paltform name
7+
PUBLIC_PLATFORM_LOGO= # Please specify your logo file link
8+
PUBLIC_POWERED_BY= # Please specify your powered by org name
9+
PUBLIC_PLATFORM_WEB_URL= # Please specify your platform web URL
10+
PUBLIC_POWERED_BY_URL= # Please specify your support URL
11+
PUBLIC_PLATFORM_DOCS_URL= # Please specify your documentation URL
12+
PUBLIC_PLATFORM_GIT= # Please specify your Github URL
13+
PUBLIC_PLATFORM_SUPPORT_EMAIL= # Please specify your support email
14+
PUBLIC_PLATFORM_TWITTER_URL= # Please specify your twitter URL
15+
PUBLIC_PLATFROM_DISCORD_SUPPORT= # Please specify your discord support url
16+
17+
18+
19+
20+

.github/workflows/deploy-qa.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Deploy develop branch to Deno
2+
on:
3+
push:
4+
branches: qa
5+
pull_request:
6+
branches: qa
7+
8+
jobs:
9+
deploy:
10+
name: Deploy
11+
runs-on: ubuntu-latest
12+
permissions:
13+
id-token: write # Needed for auth with Deno Deploy
14+
contents: read # Needed to clone the repository
15+
16+
steps:
17+
- name: Clone repository
18+
uses: actions/checkout@v3
19+
20+
- name: Install Node.js
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: lts/*
24+
25+
- name: Build step
26+
run: npm install && npm run build # 📝 Update the build command(s)
27+
28+
- name: Upload to Deno Deploy
29+
uses: denoland/deployctl@v1
30+
with:
31+
project: "credebl-studio-qa" # Project name in Deno Deploy
32+
entrypoint: "server/entry.mjs" # 📝 Update the entrypoint
33+
root: "dist"

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,9 @@ ui.env
2424

2525
# misc.
2626
.dev*
27+
28+
# hidden files
29+
._darcs
30+
.bzr
31+
.hg
32+
BitKeeper

package-lock.json

Lines changed: 15 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"astro": "^2.9.0",
4242
"axios": "^1.4.0",
4343
"cookie": "^0.5.0",
44-
"crypto-js": "^4.1.1",
44+
"crypto-js": "^4.2.0",
4545
"dom-to-image": "^2.6.0",
4646
"downloadjs": "^1.4.7",
4747
"flowbite": "^1.8.1",
@@ -57,7 +57,6 @@
5757
"react": "^18.2.0",
5858
"react-avatar": "^5.0.3",
5959
"react-dom": "^18.2.0",
60-
"react-helmet": "^6.1.0",
6160
"react-icons": "^4.10.1",
6261
"react-qr-code": "^2.0.11",
6362
"react-select": "^5.8.0",

0 commit comments

Comments
 (0)