https://github.com/interledgerjs/rafiki.money
WIP Demo Native Interledger Wallet
https://github.com/interledgerjs/rafiki.money
Last synced: 30 days ago
JSON representation
WIP Demo Native Interledger Wallet
- Host: GitHub
- URL: https://github.com/interledgerjs/rafiki.money
- Owner: interledgerjs
- Created: 2019-11-11T08:26:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-13T20:39:30.000Z (about 2 years ago)
- Last Synced: 2025-03-30T23:31:34.547Z (2 months ago)
- Language: TypeScript
- Homepage: https://rafiki.money
- Size: 8.42 MB
- Stars: 9
- Watchers: 4
- Forks: 11
- Open Issues: 51
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
WIP Example of an Interledger Native Custodial Wallet. DO NOT USE IN PRODUCTION
# Local Dev Setup
## Dependency Installs
Run a yarn install at the root of the project
```shell
yarn install
```Run a yarn install in `packages/frontend`
```shell
yarn install
```## Setup Docker Database
Start the Postgres DB
```shell
./scripts/setupDatabase.sh
```
The docker exec commands may fail, just rerun the script again to ensure the databases are created correctly## Start Services (in order)
Its important the services are started in this particular order
1. `packages/ilp-connector`
2. `packages/backend`
3. `packages/frontend`Start Connector by running this in `packages/ilp-connector`
```shell
yarn start
```Start Backend by running this in `packages/backend`
```shell
yarn build
yarn start
```Start Frontend by running this in `packages/frontend`
```shell
yarn dev