https://github.com/grazie-a-k-a-keita/shared-wallet-app
共有家計簿アプリ
https://github.com/grazie-a-k-a-keita/shared-wallet-app
cssmodules-react react typescript
Last synced: 3 months ago
JSON representation
共有家計簿アプリ
- Host: GitHub
- URL: https://github.com/grazie-a-k-a-keita/shared-wallet-app
- Owner: grazie-a-k-a-keita
- Created: 2023-10-21T02:36:00.000Z (over 1 year ago)
- Default Branch: develop
- Last Pushed: 2024-09-18T04:36:46.000Z (9 months ago)
- Last Synced: 2024-09-19T05:49:11.355Z (9 months ago)
- Topics: cssmodules-react, react, typescript
- Language: TypeScript
- Homepage:
- Size: 632 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Shared-Wallet-App 共有家計簿アプリ
## Git の運用について
### Git Flow
- main (本番環境モジュールのブランチ)
- hotfix (リリース後の緊急対応用ブランチ)
- develop (開発用のブランチ)
- feature (追加機能開発用のブランチ)

### ブランチの運用方法 ([reference](https://takeda-no-nao.net/programming/git/git-branch-naming-convention/))
基本的に「develop ブランチ」から「feature ブランチ」を切る運用。
```shell
# hotfix (リリース後の緊急対応用ブランチ)
git checkout -b hotfix/#12_・・・# feature (追加機能開発用のブランチ)
git checkout -b feature/#13_・・・# ※ [・・・]はIssueのタイトルなど
```### コミットメッセージ ([reference](https://qiita.com/konatsu_p/items/dfe199ebe3a7d2010b3e))
- feat: 新しい機能
- fix: バグの修正
- docs: ドキュメントのみの変更
- style: 空白、フォーマット、セミコロン追加など
- refactor: 仕様に影響がないコード改善(リファクタ)
- perf: パフォーマンス向上関連
- test: テスト関連
- chore: ビルド、補助ツール、ライブラリ関連### プルリクエストについて
メッセージの最後に **[close #12]** という風に、対応する Issue 番号を記入すると、Issue が自動的に閉じられる。
## 開発について
### Skills
| Skill | Description |
| ------------------------------------------------- | --------------------------------------------------------------------- |
| [React](https://ja.react.dev/) | Web とネイティブユーザインターフェースのためのライブラリ |
| ~~[PWA Vite](https://vite-pwa-org.netlify.app/)~~ | ~~Vite 開発ツール用の PWA プラグイ~~ン |
| CSS | CSS Modules + [Sass](https://sass-lang.com/)、[MUI](https://mui.com/) |### Command List
```shell
# パッケージインストール
yarn install# サーバー起動
yarn dev# ビルド
yarn build# eslint 起動
yarn lint# ローカルで静的なウェブサーバを起動し、dist のファイルを http://localhost:4173 で配信する
yarn preview# testing
yarn test# モジュールグラフを検索し、関連するテストのみを再実行する
yarn tests:watch# coverage
yarn coverage
```