- Following the Udemy Course and built an Expense Tracker app to learn how use RemixJS to build a full-stack web app.
- The app is a simple expense tracker that allows users to add, edit, and delete expenses.
- Routing, Private Routes, Authentication, Session Cookies
- CRUD Operations
- Data Persistence using MongoDB Atlas with Prisma.io
- Optimization and Deployment
From your terminal:
npm run devThis starts your app in development mode, rebuilding assets on file changes.
Make sure to run npx prisma generate before deploying.
First, build your app for production:
npm run buildThen run the app in production mode:
npm start