This is a demo application for the Loadster tutorials.
It's a spoof cryptocurrency exchange, that professes to use the blockchain in some vague hand-wavy kind of way... but peek under the covers and you'll discover the truth!
The demo app has two parts: an API and a Vue SPA.
The API is in the slothereum-api
subdirectory.
To install the npm dependencies and run it:
$ cd slothereum-api
$ npm install
$ npm start
The API will listen on http://localhost:5000.
The web app is in the slothereum-web
subdirectory.
To install the npm dependencies and run it:
$ cd slothereum-web
$ npm install
$ npm run serve
To open it in your browser, go to http://localhost:5001.
If you wish to contribute to this silly demo app, please run the linter first and address inconsistent formatting or possible bugs:
$ npm run lint
Then submit a pull request.