Skip to content

Commit

Permalink
Merge branch 'master' of github.com:binary-com/deriv-app into shafin/…
Browse files Browse the repository at this point in the history
…BOT-406/chore--update-run-panel-download-icon
  • Loading branch information
shafin-deriv committed Sep 21, 2023
2 parents 4b4ff3e + 1646a2f commit aec4111
Show file tree
Hide file tree
Showing 1,378 changed files with 50,619 additions and 23,208 deletions.
66 changes: 13 additions & 53 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ commands:
- "packages/hooks/node_modules"
- "packages/cfd/node_modules"
- "packages/indicators/node_modules"
- "packages/integration/node_modules"
- "packages/p2p/node_modules"
- "packages/reports/node_modules"
- "packages/shared/node_modules"
Expand All @@ -78,6 +79,7 @@ commands:
- "packages/translations/node_modules"
- "packages/utils/node_modules"
- "packages/analytics/node_modules"
- "packages/wallets/node_modules"
# VERIFY_CACHE_FOLDERS_END (DO NOT REMOVE)

build:
Expand Down Expand Up @@ -108,53 +110,6 @@ commands:
name: Tag
command: echo "<< parameters.version_name >>-$(date -u +"%Y-%m-%dT%H:%M:%SZ")" > packages/core/dist/version

docker_build_push:
description: "Build and Push image to docker hub"
parameters:
docker_image_latest_tag:
type: string
default: "latest-staging"
docker_image_name:
type: string
default: "deriv-app"
docker_file:
type: string
default: "Dockerfile"
steps:
- setup_remote_docker
- run:
name: Building docker image
command: |
TAG=${CIRCLE_TAG:-$CIRCLE_SHA1}
docker build -t ${DOCKHUB_ORGANISATION}/<< parameters.docker_image_name >>:${TAG} -t ${DOCKHUB_ORGANISATION}/<< parameters.docker_image_name >>:<< parameters.docker_image_latest_tag >> -f << parameters.docker_file >> .
- run:
name: Pushing Image to docker hub
command: |
TAG=${CIRCLE_TAG:-$CIRCLE_SHA1}
echo $DOCKERHUB_PASSWORD | docker login -u $DOCKERHUB_USERNAME --password-stdin
docker push ${DOCKHUB_ORGANISATION}/<< parameters.docker_image_name >>:<< parameters.docker_image_latest_tag >>
docker push ${DOCKHUB_ORGANISATION}/<< parameters.docker_image_name >>:${TAG}
k8s_deploy:
description: "Deploy to k8s cluster"
parameters:
k8s_namespace:
type: string
default: "deriv-app-staging"
k8s_service:
type: string
default: "deriv-app"
steps:
- k8s/install-kubectl
- run:
name: Deploying to k8s cluster to namespace << parameters.k8s_namespace >>
command: |
TAG=${CIRCLE_TAG:-$CIRCLE_SHA1}
export NAMESPACE=<< parameters.k8s_namespace >>
git clone https://github.com/binary-com/devops-ci-scripts
cd devops-ci-scripts/k8s-build_tools
echo $CA_CRT | base64 --decode > ca.crt
./release.sh << parameters.k8s_service >> ${TAG}
publish_to_pages_staging:
description: "Publish to cloudflare pages"
steps:
Expand Down Expand Up @@ -201,8 +156,6 @@ jobs:
root: packages
paths:
- core
- docker_build_push
- k8s_deploy
- notify_slack
environment:
NODE_ENV: staging
Expand All @@ -221,10 +174,8 @@ jobs:
root: packages
paths:
- core
- docker_build_push:
docker_image_latest_tag: latest
- k8s_deploy:
k8s_namespace: "deriv-app-production"


- notify_slack
environment:
NODE_ENV: staging
Expand Down Expand Up @@ -271,9 +222,18 @@ jobs:
- run:
name: "Check TypeScript for @deriv/stores"
command: npx tsc --project packages/stores/tsconfig.json -noEmit
- run:
name: "Check TypeScript for @deriv/wallets"
command: npx tsc --project packages/wallets/tsconfig.json -noEmit
# - run:
# name: "Check TypeScript for @deriv/cashier"
# command: npx tsc --project packages/cashier/tsconfig.json -noEmit
- run:
name: "Check ESLint for @deriv/wallets"
command: npx eslint --fix --config packages/wallets/.eslintrc.js packages/wallets
- run:
name: "Check Stylelint for @deriv/wallets"
command: npx stylelint packages/wallets/**/*.scss
- run:
name: "Check tests for @deriv/hooks"
command: bash ./scripts/check-tests.sh packages/hooks/src
Expand Down
12 changes: 12 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,15 @@
/packages/trader/**/* @matin-deriv @maryia-deriv


# ==============================================================
# deriv-app/wallets
# ==============================================================

/packages/wallets/**/* @adrienne-deriv @thisyahlen-deriv @farhan-nurzi-deriv


# ==============================================================
# deriv-app/api
# ==============================================================

/packages/api/**/* @adrienne-deriv @thisyahlen-deriv @farhan-nurzi-deriv
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@ packages/appstore/lib/
packages/appstore/.out
.env
nx-cloud.env

test-results/
playwright-report/
playwright/.cache/
4 changes: 3 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged --allow-empty
npx lint-staged --allow-empty

bash ./.husky/secret-scanner.sh
29 changes: 29 additions & 0 deletions .husky/secret-scanner.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash

#checking absolute paths
if command -v trufflehog &> /dev/null; then
trufflehog_path="trufflehog"
elif [[ -x /usr/local/bin/trufflehog ]]; then
trufflehog_path="/usr/local/bin/trufflehog"
elif [[ -x /opt/homebrew/bin/trufflehog ]]; then
trufflehog_path="/opt/homebrew/bin/trufflehog"
else
echo "Trufflehog is not setup. Please connect with Product Security Team"
exit 1
fi

# Use `filesysytem` if the git repo does not have any commits i.e its a new git repo.
if git log -1 > /dev/null 2>&1; then
$trufflehog_path git file://. --no-update --since-commit HEAD --fail > /tmp/trufflehog_output_$(whoami) 2>&1
trufflehog_exit_code=$?
else
$trufflehog_path filesystem . --no-update --fail > /tmp/trufflehog_output_$(whoami) 2>&1
trufflehog_exit_code=$?
fi

# Only display results to stdout if trufflehog found something.
if [ $trufflehog_exit_code -eq 183 ]; then
cat /tmp/trufflehog_output_$(whoami)
echo "TruffleHog found secrets. Aborting commit. use --no-verify to bypass it"
exit $trufflehog_exit_code
fi
2 changes: 1 addition & 1 deletion .stylelintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = {
'shorthand-property-no-redundant-values': true,
'string-no-newline': true,
'time-min-milliseconds': 100,
'unit-allowed-list': ['fr', 'px', 'em', 'rem', '%', 'vw', 'vh', 'deg', 'ms', 's', 'dpcm'],
'unit-allowed-list': ['fr', 'px', 'em', 'rem', '%', 'svh', 'vw', 'vh', 'deg', 'ms', 's', 'dpcm'],
'value-keyword-case': 'lower',
},
extends: [
Expand Down
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ If preferable to use manual deployment, you can use [gh-pages](https://pages.git

**A.** Just as installing, except the `npm` command you'd run would be `npm uninstall` (shortened to `npm un`). e.g.: `lerna exec --scope=@deriv/translations -- npm un i18next`.
3. How do I run `npm ci` or equivalent (to add dependencies based on `package-lock.json`?
3. How do I run `npm ci` or equivalent to add dependencies based on `package-lock.json`?
**A.** You have two options:
Expand All @@ -280,15 +280,7 @@ If preferable to use manual deployment, you can use [gh-pages](https://pages.git

If you face this issue, simply run `sudo chown -R $(whoami) .` from the root of the project.

5. My build(s) fail and I can see it related to Node Sass (`node-sass`), what do I do?

**A.** This issue happens when your `node-sass` has its `binding.node` set to a version of node different from the current projects' one. Please try the following in order:
1. First run `npx lerna exec -- npm rebuild node-sass` and try building your packages again.
2. If that doesn't work, try `npm cache clean --force`, followed by `npm run clean`, and then `npm run bootstrap`.
3. And finally, if that doesn't work then you can read deeper into this [StackOverflow post](https://stackoverflow.com/questions/37986800).
6. How can I regenerate `package-lock.json` file?
5. How can I regenerate `package-lock.json` file?

We have added `bootstrap:dev` to scripts. If you are updating or adding a package and you want to regenerate `package-lock.json` file, you should run this command
`npm run bootstrap:dev`
16 changes: 0 additions & 16 deletions end-to-end-test/.env.example

This file was deleted.

27 changes: 0 additions & 27 deletions end-to-end-test/.github/workflows/playwright.yml

This file was deleted.

4 changes: 0 additions & 4 deletions end-to-end-test/.gitignore

This file was deleted.

63 changes: 0 additions & 63 deletions end-to-end-test/README.md

This file was deleted.

18 changes: 0 additions & 18 deletions end-to-end-test/global-setup.ts

This file was deleted.

21 changes: 0 additions & 21 deletions end-to-end-test/package.json

This file was deleted.

Loading

0 comments on commit aec4111

Please sign in to comment.