2018-11-20 11:19:58 -08:00
# Christmas Community
2019-11-10 13:28:40 -08:00
![Docker Pulls ](https://img.shields.io/docker/pulls/wingysam/christmas-community?style=for-the-badge )
![Version ](https://img.shields.io/badge/dynamic/json?color=orange&label=Version&query=version&url=https%3A%2F%2Fgitlab.com%2Fwingysam%2Fchristmas-community%2Fraw%2Fmaster%2Fpackage.json&style=for-the-badge )
2019-11-13 09:34:49 -08:00
![Language ](https://img.shields.io/badge/Language-JavaScript-DDA000?style=for-the-badge )
2019-11-10 13:28:40 -08:00
![Runtime ](https://img.shields.io/badge/Runtime-Node.JS-68A063?style=for-the-badge )
2018-11-20 11:19:58 -08:00
Web app for your family's Christmas shopping
## Purpose
To create a simple place for your entire family to use to find gifts that people want, and to avoid double-gifting.
2019-11-10 13:29:00 -08:00
## Screenshots
![Screenshot ](screenshots/main.png )
![Screenshot ](screenshots/list.png )
![Screenshot ](screenshots/link-not-required.png )
![Screenshot ](screenshots/name-from-link.png )
2019-11-13 09:34:32 -08:00
## Amazon Smile
By default, Christmas Community converts www.amazon.com links to smile.amazon.com. If you do not want this, set the environment variable SMILE to false (if you are using Docker Compose, make sure to put "false" in quotes).
2020-10-29 11:14:38 -07:00
## Root Path
If you want put Christmas Community on a subdirectory, such as `/christmas-community` , set `ROOT_PATH` to that path.
2019-11-10 10:48:59 -08:00
## Docker
```
docker run --detach --name christmas-community -p 80:80 --restart always wingysam/christmas-community
```
## Docker Compose
```yml
---
version: "3"
services:
christmas-community:
image: wingysam/christmas-community
volumes:
- ./data:/data
ports:
2019-11-13 09:34:32 -08:00
# If you want to go to localhost:8080 to access Christmas Community,
# use - 8080:80 instead of
2019-11-10 10:48:59 -08:00
- 80:80
2019-11-13 09:34:32 -08:00
environment:
# Amazon Smile, set to 'false' to disable www.amazon.com links
# turning into smile.amazon.com
SMILE: 'true'
2019-11-16 20:34:04 -08:00
# Table mode, set to 'false' to revert to box mode
TABLE: 'true'
2019-11-18 10:57:47 -08:00
# Single list mode
# (for weddings, birthdays, etc. only the admin account's list is accessible)
# Set to 'true' to enable
SINGLE_LIST: 'false'
2019-11-10 10:48:59 -08:00
restart: always
```
2018-11-20 11:19:58 -08:00
## Install
```sh
git clone https://gitlab.com/wingysam/christmas-community
cd christmas-community
yarn
```
## Configuration
Add environment variables with a .env. Example:
```env
SITE_TITLE="Christmas Zone"
PORT=80
```
## Startup
```sh
2020-11-02 16:07:12 -08:00
npm start
2018-11-20 11:19:58 -08:00
```
## Setup
2019-11-18 13:37:48 -08:00
Visit `/` on the HTTP server to add an admin account.