A CSV converter application that converts a Crypto.com exported CSV to a format that is able to be imported into the Delta crypto-currency portfolio application. Coded in HTML, CSS, Javascript with the help of Bootstrap and VueJS framework.
https://jarylchng.com/projects/cdcdelta/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
image: node:latest
|
|
|
|
include:
|
|
- template: License-Scanning.gitlab-ci.yml
|
|
- template: Dependency-Scanning.gitlab-ci.yml
|
|
- template: SAST.gitlab-ci.yml
|
|
- template: Secret-Detection.gitlab-ci.yml
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- yarn
|
|
- yarn build
|
|
- rm -rf public
|
|
- mkdir public
|
|
- cp -r dist/* public
|
|
cache:
|
|
key: ${CI_COMMIT_REF_SLUG}
|
|
paths:
|
|
- node_modules/
|
|
artifacts:
|
|
expire_in: 1 day
|
|
paths:
|
|
- public
|