A Next.js 16 inventory management application built for the IBM Bob hackathon.
Copy .env.example to .env.local and add your Supabase credentials:
cp .env.example .env.localCreate a test user and sample products:
pnpm seedThis creates:
- Test User:
test@volea.app/Test123456! - Sample Products: 5 products with stock data
pnpm devOpen http://localhost:3000/es/login and login with the test credentials.
After running pnpm seed, use these credentials to login:
- Email:
test@volea.app - Password:
Test123456!
The seed script creates 5 sample products:
- Café Colombiano ($15.00, 50 units)
- Arepa de Queso ($8.00, 30 units)
- Empanada de Carne ($6.00, 25 units)
- Jugo Natural ($5.00, 15 units)
- Pandebono ($4.00, 40 units)
/app- Next.js 16 App Router pages/components- React components/lib- Utilities and Supabase client/supabase/migrations- Database schema/scripts- Seed and utility scripts
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.