Example back-end API for bank-like app that uses memory for storing the data. Supports log-in, fetching/adding transactions, sorting and filtering.
Everything is in memory - the MemoryState class is holding all of the data.
Install the required dependency shards:
shards install
Run the application:
crystal run src/bank_app.cr
The available endpoints are in the requests.http
file.
You can find example log-in details in the Initializer class (for example, mark/mark).
TODO: Write development instructions here
- Fork it (https://github.com/evvo/bank_app/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Evtimiy Mihaylov - creator and maintainer