Eraser-Demo.mov
Eraser is an app I built to practice with react-native. It is a CRUD app that lets students track upcoming assignments for courses. It is based on Backpack, the more full-fledged solution that I have been building. You can check Backpack out on the app store here. I wanted to build a full-stack app to get experience working with different components of product development. I also wanted to apply the knowledge I have acquired from Backpack in order to create a robust and modular project. Finally, I thought it would be interesting to implement some ideas I had for Backpack that didn't make the final cut, such as a bidirectional infinite-scrolling agenda.
This directory contains all necessary logic to run the react-native app (note: only the iOS version is available at this point)
This directory contains a custom CLI I developed to aid in generating templates for components, views, etc. This allowed me to iterate quickly and ensure that my project kept a uniform structure in terms of types, project structure, modularity, etc.
This directory contains all necessary logic to run the NestJS server, which handles all requests for users, such as creating users, CRUD operations for courses and assignments, etc. It uses postgres as the database.
- Download repos (app, cli, server)
- Install dependencies using yarn
- Create a new firebase project with authentication
- Create a new service account, copy over credentials into
/server/src/firebase/firebase.config.json
- Create a new iOS app, copy over plist into
/app/ios/GoogleService-Info.plist
cd server
- Set up a postgres instance
- Add database url to .env file in /server (example provided)
- Run
npx prisma migrate dev
to set up database - Run
npm run start:dev
- Make a post request to /api/user to create the test user
curl --location --request POST 'http://localhost:3000/api/user' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "LpyLsngLC1b7IumK557o6AslZ9R2",
"name": "Test User",
"email": "testuser@test.com"
}'
You're all set! Your server is now up and running
cd app
- Ensure that node_modules and pods are installed
- Run
yarn ios
ornpm run ios
- Replace
ORIGIN
in /src/tools/constants/index.ts to your server's URL
cd cli
- Run
npm run build
All set! Your CLI is not available in /app
Run ecli
in the terminal to view commands