342 B
342 B
Commands
Backend
cd backend
bundle install
bundle exec rails db:migrate
bundle exec rspec
bundle exec rails routes
Frontend
cd frontend
npm install
npm run dev
npm run build
npm run lint
npm test
Full verification
cd backend && bundle exec rspec
cd ../frontend && npm run build && npm run lint