Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
acekyd committed Jul 31, 2024
1 parent efe2f2e commit d231195
Show file tree
Hide file tree
Showing 15 changed files with 1,381 additions and 3,521 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Node.js CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build_and_test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: ['20.4.0']

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install

- name: Start the server
run: npm run server &

- name: Wait for server to be ready
run: |
timeout=30
start_time=$(date +%s)
while ! curl -s -o /dev/null -w "%{http_code}" http://localhost:9000/ | grep -q 200; do
current_time=$(date +%s)
elapsed_time=$((current_time - start_time))
if [ $elapsed_time -gt $timeout ]; then
echo "Server did not respond within the timeout of $timeout seconds"
exit 1
fi
sleep 1
done
- name: Run end-to-end tests
run: npm run test:e2e
55 changes: 0 additions & 55 deletions .github/workflows/docker-image-publish.yml

This file was deleted.

21 changes: 0 additions & 21 deletions Dockerfile

This file was deleted.

33 changes: 0 additions & 33 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,36 +69,3 @@ Configuration can be set using environment variables. Defaults are set in `src/c
| [CONTRIBUTING.md](./CONTRIBUTING.md) | Developer guide to build, test, run, access CI, chat, discuss, file issues |
| [GOVERNANCE.md](./GOVERNANCE.md) | Project governance |
| [LICENSE](./LICENSE) | Apache License, Version 2.0 |


### Available PFIs
- AquaFinance Capital: https://aqf-mock-pfis.tbddev.org/
- SwiftLiquidity Solutions: https://sls-mock-pfis.tbddev.org
- Flowback Financial: https://ff-mock-pfis.tbddev.org
- Vertex Liquid Assets: https://vla-mock-pfis.tbddev.org
- Titanium Trust: https://tt-mock-pfis.tbddev.org

### Required Issuer
- Ultimate Identity : https://mock-idv.tbddev.org

### Provided offerings
- GHS to USDC
- NGN to KES
- KES to USD
- USD to KES
- KES to USDC
- KES to USD
- NGN to GHS
- BTC to NGN
- USD to EUR
- EUR to USD
- USD to GBP
- USD to BTC
- EUR to USD
- EUR to USDC
- USD to EUR
- EUR to GBP
- USD to AUD
- USD to GBP
- USD to KES
- USD to MXN
7 changes: 0 additions & 7 deletions charts/Chart.yaml

This file was deleted.

62 changes: 0 additions & 62 deletions charts/templates/app.yaml

This file was deleted.

105 changes: 0 additions & 105 deletions charts/templates/virtual_service.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions charts/values.yaml

This file was deleted.

12 changes: 0 additions & 12 deletions docker-compose.yaml

This file was deleted.

Loading

0 comments on commit d231195

Please sign in to comment.