/rewards-app

This is an app that allows users to redeem rewards.

Primary LanguageVue

ResMan Rewards App

This is an app that allows users to redeem rewards.

🚀 Quick Start

# First, install dependencies
npm run setup

# Then, run the app
npm run dev

# Finally, open the app in your browser: http://localhost:3000

✨ Features

  • Prize Listing
  • Prize Details
  • Redeem the Prize ~ A User can only redeem a given prize if it has a stock once
  • Login & Registration System
  • Concurrent redeeming of prize ~ Multiple users can redeem the prize if stock is available

Tech Stack

Deployment

# First of all, create the remote branches:
git remote add heroku-app https://git.heroku.com/resman-rewards-app.git
git remote add heroku-api https://git.heroku.com/resman-rewards-api.git

# Then, build the applications
npm run build

# Deploy the App
git subtree push --prefix packages/app heroku-app main

# Deploy the Api
git subtree push --prefix packages/api heroku-api main