Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 912 Bytes

README.md

File metadata and controls

58 lines (40 loc) · 912 Bytes

Wishlists

This is an application for sharing wishlists between a group of people! Create your own wishlist, share it with your group, and check off items from their wishlist as they're bought.

Architecture

C# ASP.NET Web API Create React App Static Web Application

Role Location
API /api/UnMango.Wishlists.Api/
Web App /app/web/

API

The API documentation can be found here.

Building

As a convencience, scripts are provided to build both applications.

./hack/build.sh
pwsh ./hack/build.ps1

Web App

cd app/web
npm ci
npm run build

Running

As a convencience, scripts are provided to start both applications.

./hack/start.sh
pwsh ./hack/start.ps1

Web App

cd app/web
npm ci
npm run dev