Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stellar-deprecated/bridge-server
Deprecated. Go to https://github.com/stellar/go/tree/master/services/bridge
https://github.com/stellar-deprecated/bridge-server
blockchain compliance cryptocurrency finance stellar
Last synced: 12 days ago
JSON representation
Deprecated. Go to https://github.com/stellar/go/tree/master/services/bridge
- Host: GitHub
- URL: https://github.com/stellar-deprecated/bridge-server
- Owner: stellar-deprecated
- License: apache-2.0
- Archived: true
- Created: 2016-01-11T14:53:32.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-03-30T21:15:56.000Z (over 5 years ago)
- Last Synced: 2024-08-02T05:10:52.987Z (3 months ago)
- Topics: blockchain, compliance, cryptocurrency, finance, stellar
- Language: Go
- Homepage:
- Size: 19.7 MB
- Stars: 88
- Watchers: 28
- Forks: 64
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# bridge-server
This suite consists of the following apps:
* [`bridge`](./readme_bridge.md) - builds, submits and monitors transaction in Stellar network,
* [`compliance`](./readme_compliance.md) - helper server for using [Compliance protocol](https://www.stellar.org/developers/learn/integration-guides/compliance-protocol.html).More information about each server can be found in corresponding README file.
## Downloading the server
[Prebuilt binaries](https://github.com/stellar/bridge-server/releases) of the bridge-server server are available on the
[releases page](https://github.com/stellar/bridge-server/releases).| Platform | Binary file name |
|----------------|------------------------------------------------------------------------------------------|
| Mac OSX 64 bit | [name-darwin-amd64](https://github.com/stellar/bridge-server/releases) |
| Linux 64 bit | [name-linux-amd64](https://github.com/stellar/bridge-server/releases) |
| Windows 64 bit | [name-windows-amd64.exe](https://github.com/stellar/bridge-server/releases) |Alternatively, you can [build](#building) the binary yourself.
## Building
[gb](http://getgb.io) is used for building and testing.
Given you have a running golang installation, you can build the server with:
```
gb build
```After a successful build, you should find `bin/bridge` in the project directory.
### GUI
To build user interface for the bridge server go to `gui` folder and run:
```
gulp build
```For development run:
```
gulp develop
```## Running tests
```
gb test
```## Documentation
```
godoc -goroot=. -http=:6060
```Then simply open:
```
http://localhost:6060/pkg/github.com/stellar/gateway/
```
in a browser.