The idea behind this project is based on my Python wallet project.
This is an example project. I'm not trying to create a real bank website.
Security, some audit requirements and features are simplified.
Transactions, withdraw, deposit, fees, exchange rate...
I'm working on it so step by step. Take a look the feature type PRs or refactors. I also have others like: bugfix, build, style, docs. Take a look to the list of labels 😉.
- Using make:
make start- Just docker:
docker compose up -dCheck it on: http://localhost:4000.
- Using make:
make tests- Just docker:
docker compose -f docker-compose-test.yml run --rm web_test mix test --warnings-as-errorsInside the web container:
- Using make:
make bash- Just docker:
docker compose exec web /bin/bashExecute seed command:
mix run priv/repo/seeds.exs- Using make:
make ci- Just docker:
Yo have all executed command in make-scripts/ci.sh.
Pleas check whys folder.