-
Notifications
You must be signed in to change notification settings - Fork 506
Add WeddingShare to App Store #743
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Cirx08
wants to merge
10
commits into
IceWhaleTech:main
Choose a base branch
from
Cirx08:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
9eb4529
Added weddingshare
Cirx08 a2e082f
Updated screenshots
Cirx08 8e34e56
Merge branch 'main' into main
Cirx08 99d5f09
Corrected language code case
Cirx08 e695158
Merge branch 'main' into main
Cirx08 cc90950
Added translations
Cirx08 48e108e
Merge branch 'main' into main
Cirx08 1c4f31b
Updated docker image tag
Cirx08 0e92c42
Merge branch 'main' into main
Cirx08 d4f4f34
Merge branch 'main' into main
Cirx08 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
name: wedding-share | ||
services: | ||
wedding-share: | ||
container_name: WeddingShare | ||
image: cirx08/wedding_share:1.6.8.1 | ||
ports: | ||
- target: 5000 | ||
published: ${WEBUI_PORT:-5000} | ||
protocol: tcp | ||
environment: | ||
TZ: $TZ | ||
TITLE: 'WeddingShare' | ||
ACCOUNT_OWNER_USERNAME: 'admin' | ||
ACCOUNT_OWNER_PASSWORD: 'admin' | ||
ENCRYPTION_KEY: 'ChangeMe' | ||
ENCRYPTION_SALT: 'ChangeMe' | ||
volumes: | ||
- type: bind | ||
source: /DATA/AppData/$AppID/app/config | ||
target: /app/config | ||
- type: bind | ||
source: /DATA/AppData/$AppID/app/wwwroot/uploads | ||
target: /app/wwwroot/uploads | ||
- type: bind | ||
source: /DATA/AppData/$AppID/app/wwwroot/thumbnails | ||
target: /app/wwwroot/thumbnails | ||
- type: bind | ||
source: /DATA/AppData/$AppID/app/wwwroot/custom_resources | ||
target: /app/wwwroot/custom_resources | ||
network_mode: bridge | ||
hostname: wedding-share | ||
restart: unless-stopped | ||
x-casaos: | ||
ports: | ||
- container: "5000" | ||
description: | ||
en_gb: "Web UI Port" | ||
envs: | ||
- container: TZ | ||
description: | ||
en_gb: "TimeZone" | ||
- container: TITLE | ||
description: | ||
en_gb: "Title to display in headers" | ||
- container: ACCOUNT_OWNER_USERNAME | ||
description: | ||
en_gb: "The primary account username" | ||
- container: ACCOUNT_OWNER_PASSWORD | ||
description: | ||
en_gb: "The primary account password" | ||
- container: ENCRYPTION_KEY | ||
description: | ||
en_gb: "The key used to encrypt data" | ||
- container: ENCRYPTION_SALT | ||
description: | ||
en_gb: "The salt used to randomize the encryption" | ||
volumes: | ||
- container: /app/config | ||
description: | ||
en_gb: "Path to store configuration settings" | ||
- container: /app/wwwroot/uploads | ||
description: | ||
en_gb: "Path to store uploaded content" | ||
- container: /app/wwwroot/thumbnails | ||
description: | ||
en_gb: "Path to store generated thumbnails" | ||
- container: /app/wwwroot/custom_resources | ||
description: | ||
en_gb: "Path to store uploaded logos and banners" | ||
x-casaos: | ||
main: wedding-share | ||
architectures: | ||
- amd64 | ||
- arm | ||
- arm64 | ||
author: Cirx08 | ||
category: Gallery | ||
description: | ||
en_gb: | | ||
WeddingShare is a very basic site with only one goal. It provides you and your guests a way to share memories of and leading up to the big day. Simply provide your guests with a link to a gallery either via a Url or even better by printing out the provided QR code and dropping it on your guests' dinner tables. Doing so will allow them to view your journey up to this point such as dress/suit shopping, viewing the venue, doing the food tasting or cake shopping, etc. | ||
|
||
You are not limited to a single gallery. You can generate multiple galleries all with their own sharable links. At this stage galleries are a bit unsecure, meaning anyone with the link has access to view and share images so I recommend keeping your share links private. To combat strangers gaining access to your galleries you can provide a secret key during setup but be advised this is a deterrent to make guessing Urls slightly harder and not an actual security catch all. | ||
|
||
Thank you to everyone that supports this project. For anyone that hasn't yet I would be grateful if you would show some support by "buying me a coffee" through the link below. Weddings are expensive and all proceeds from this project will be going towards paying off my wedding bills. | ||
|
||
BuyMeACoffee - https://buymeacoffee.com/cirx08 | ||
GitHub Sponsors - https://github.com/sponsors/Cirx08 | ||
developer: Cirx08 | ||
icon: https://cdn.jsdelivr.net/gh/Cirx08/CasaOS-AppStore@main/Apps/WeddingShare/icon.png | ||
screenshot_link: | ||
- https://cdn.jsdelivr.net/gh/Cirx08/CasaOS-AppStore@main/Apps/WeddingShare/screenshot-1.jpg | ||
- https://cdn.jsdelivr.net/gh/Cirx08/CasaOS-AppStore@main/Apps/WeddingShare/screenshot-2.jpg | ||
- https://cdn.jsdelivr.net/gh/Cirx08/CasaOS-AppStore@main/Apps/WeddingShare/screenshot-3.jpg | ||
- https://cdn.jsdelivr.net/gh/Cirx08/CasaOS-AppStore@main/Apps/WeddingShare/screenshot-4.jpg | ||
tagline: | ||
en_gb: A place for guests to view and drop pictures of the big day | ||
thumbnail: https://cdn.jsdelivr.net/gh/Cirx08/CasaOS-AppStore@main/Apps/WeddingShare/thumbnail.png | ||
tips: {} | ||
title: | ||
en_gb: WeddingShare | ||
index: / | ||
port_map: ${WEBUI_PORT:-5000} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.