This commit is contained in:
2026-05-11 02:30:13 +09:00
parent e03cc01109
commit d3f2b009bc
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
```