https://github.com/swuecho/bankaccount
https://github.com/swuecho/bankaccount
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/swuecho/bankaccount
- Owner: swuecho
- Created: 2022-01-03T03:58:12.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-03T06:52:02.000Z (over 3 years ago)
- Last Synced: 2025-01-22T15:46:46.230Z (3 months ago)
- Language: Python
- Size: 46.9 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## How to run flask app
```sh
# set up poetry first
poetry install
poetry shellexport 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`