Skip to content
/ python-starter Public template

Pythonのプロジェクトテンプレート

License

Notifications You must be signed in to change notification settings

negi524/python-starter

Repository files navigation

python-starter

Pythonのプロジェクトテンプレート

プロジェクトインストール

poetry install

credentialファイル作成

cp python_starter/.env.sample python_starter/.env

プログラム実行

poetry run python python_starter/main.py

or

make main

フォーマット

make format

テスト実行

make test

型チェック

make type-check

全てまとめてチェック

make format test type-check