Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 830 Bytes

README.md

File metadata and controls

57 lines (36 loc) · 830 Bytes

fluentqa-base

Coverage Report

What is fluentqa-base?

Fluent-QA Python Base Package, include:

  1. BaseDataModel: pydantic model for structured data
  2. builtin tools
  3. configuration tools

Very first steps

Initialize your code

  1. Initialize git inside your repo:
cd fluentqa-base && git init
  1. If you don't have Poetry installed run:
make poetry-download
  1. Initialize poetry and install pre-commit hooks:
make install
make pre-commit-install
  1. Run the codestyle:
make codestyle
  1. Upload initial code to GitHub:
git add .
git commit -m ":tada: Initial commit"
git branch -M main
git remote add origin https://github.com/fluent-qa/fluentqa-base.git
git push -u origin main