Codex 用ファイル追加 (#346) (#347)

#346

Co-authored-by: miteruzo <miteruzo@naver.com>
Reviewed-on: #347
このコミットはPull リクエスト #347 でマージされました.
このコミットが含まれているのは:
2026-05-11 02:30:55 +09:00
コミット 2de7e13a8a
9個のファイルの変更1199行の追加0行の削除
+29
ファイルの表示
@@ -0,0 +1,29 @@
# Commands
## Backend
```sh
cd backend
bundle install
bundle exec rails db:migrate
bundle exec rspec
bundle exec rails routes
```
## Frontend
```sh
cd frontend
npm install
npm run dev
npm run build
npm run lint
npm test
```
### Full verification
```sh
cd backend && bundle exec rspec
cd ../frontend && npm run build && npm run lint
```