https://github.com/mobius-network/dapp-server-js
Webtask.io-compatible implementation of Mobius DApp backend
https://github.com/mobius-network/dapp-server-js
Last synced: 9 months ago
JSON representation
Webtask.io-compatible implementation of Mobius DApp backend
- Host: GitHub
- URL: https://github.com/mobius-network/dapp-server-js
- Owner: mobius-network
- Created: 2018-06-05T17:00:19.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-25T13:18:31.000Z (almost 8 years ago)
- Last Synced: 2025-10-03T14:59:43.091Z (9 months ago)
- Language: JavaScript
- Size: 271 KB
- Stars: 0
- Watchers: 9
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mobius DApp Server
This repo provides a default implementation of Mobius DApp backend running on [Webtask.io](https://webtask.io).
It exposes some generic API calls, like `/balance` and `/charge`. If your DApp frontend requires something
different, you can fork this repo and extend the API up to your needs.
## Install
```console
$ git clone https://github.com/mobius-network/dapp-server-js.git
$ cd dapp-server-js
$ yarn install
```
## Configure
```console
# Register an account on webtask.io:
$ yarn wt profile init
# Setup a new DApp for development:
$ yarn setup
```
## Run
```console
# Run locally
$ yarn dev
# Open development page
$ open dev.html
# Deploy to Webtask.io
$ yarn deploy
# Deploy to Webtask.io and re-deploy on changes
$ yarn watch
```