An open API service indexing awesome lists of open source software.

https://github.com/swuecho/bankaccount


https://github.com/swuecho/bankaccount

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

## How to run flask app

```sh
# set up poetry first
poetry install
poetry shell

export FLASK_APP=account
export FLASK_ENV=development
flask run --host=0.0.0.0 --port=5888

# init db using
http://localhost:5888/initdb

#if username != "admin" or password != "test":

admin,test is default user and pass (to save time)
```

## test pass

the main logic is test in `test_user.py`

Screen Shot 2022-01-03 at 2 48 07 PM