- .gitignore
- LICENCE
- README.md
git clone https://github.com/<your name>/new_life_bank.git
cd new_life_bank
code .
python --version
pip3 install virtualenv
virtualenv --version
python -m virtualenv venv
source venv/Scripts/activate
(venv)
pip3 freeze
python
>> import datetime
pip3 install fastapi uvicorn
pip3 freeze
pip3 freeze >> requirements.txt
uvicorn main:app --reload
- browser (http://127.0.0.1:8000/)
- browser (http://127.0.0.1:8000/health/)
- browser (http://127.0.0.1:8000/docs/)
- curl 127.0.0.1:8000/health
- postman