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

#346

Co-authored-by: miteruzo <miteruzo@naver.com>
Reviewed-on: #347
This commit was merged in pull request #347.
This commit is contained in:
2026-05-11 02:30:55 +09:00
parent e03cc01109
commit 2de7e13a8a
9 changed files with 1199 additions and 0 deletions
+29
View File
@@ -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
```