Simple webapp for publishing wishlists
Find a file
Benny Samir Hierl 8b0d8d27e3 #1 response code changed
Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
2022-02-05 13:20:44 +01:00
.github/workflows arm/v7 support removed 2022-02-04 09:33:37 +01:00
.husky husky for pre-commit and pre-push added 2022-02-03 21:25:27 +01:00
prisma DB schema changed 2022-01-29 18:42:26 +01:00
public remove images 2022-01-29 11:17:26 +01:00
src #1 response code changed 2022-02-05 13:20:44 +01:00
.dockerignore first commit 2022-01-29 11:04:24 +01:00
.editorconfig first commit 2022-01-29 11:04:24 +01:00
.env.template first commit 2022-01-29 11:04:24 +01:00
.eslintrc.cjs first commit 2022-01-29 11:04:24 +01:00
.gitignore fix gitignore 2022-01-29 11:18:38 +01:00
.prettierrc first commit 2022-01-29 11:04:24 +01:00
docker-compose.yml docker-compose adjustments 2022-01-29 18:10:37 +01:00
Dockerfile issue with husky fixed 2022-02-05 07:56:09 +01:00
env.d.ts first commit 2022-01-29 11:04:24 +01:00
examples.http #1 Create Endpoint added 2022-02-05 09:53:46 +01:00
index.html first commit 2022-01-29 11:04:24 +01:00
nodemon.json first commit 2022-01-29 11:04:24 +01:00
package-lock.json Bump Package version 2022-02-05 08:10:26 +01:00
package.json Bump Package version 2022-02-05 08:10:26 +01:00
postcss.config.js first commit 2022-01-29 11:04:24 +01:00
README.md update readme 2022-02-04 07:56:51 +01:00
tailwind.config.js first commit 2022-01-29 11:04:24 +01:00
tsconfig.backend.json first commit 2022-01-29 11:04:24 +01:00
tsconfig.json first commit 2022-01-29 11:04:24 +01:00
vite.config.ts first commit 2022-01-29 11:04:24 +01:00

wishlist

The wishlist app is a simple webapp for publishing wishlists. It allows to share wishlists for different people or occasions with friends and family. If something was bought from the wishlist, it can be removed from the list to prevent duplicate purchases.

The app can be easily self-hosted via Docker (see docker-compose example below).

Features

  • Support of multiple wishlists
  • Items can be removed from the wishlist by users
  • i18n support

Feature Roadmap

  • Administrate wishlists
  • Grab title, description and image-url from url via open graph meta tags
  • Login
  • Image upload

Docker Setup

version: '3.7'

services:
  wishlist:
    image: thisisbenny/wishlist-app:latest
    ports:
      - '5000:5000'
    volumes:
      - ./data:/app/data

Development Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Type-Check, Compile and Minify for Production

npm run build

Run Unit Tests

npm run test:unit

Lint

npm run lint

Typecheck

npm run typecheck