-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #683 from Ahson-Shaikh/added-template-grocy
Template Grocy Added
- Loading branch information
Showing
4 changed files
with
153 additions
and
0 deletions.
There are no files selected for viewing
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.
This file contains 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,32 @@ | ||
import { Output, Services } from "~templates-utils"; | ||
import { Input } from "./meta"; | ||
|
||
export function generate(input: Input): Output { | ||
const services: Services = []; | ||
|
||
services.push({ | ||
type: "app", | ||
data: { | ||
serviceName: input.appServiceName, | ||
source: { | ||
type: "image", | ||
image: input.appServiceImage, | ||
}, | ||
domains: [ | ||
{ | ||
host: "$(EASYPANEL_DOMAIN)", | ||
port: 80, | ||
}, | ||
], | ||
mounts: [ | ||
{ | ||
type: "volume", | ||
name: "config", | ||
mountPath: "/config", | ||
}, | ||
], | ||
}, | ||
}); | ||
|
||
return { services }; | ||
} |
This file contains 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,79 @@ | ||
name: Grocy | ||
description: | ||
Grocy is a self-hosted groceries and household management solution. It helps | ||
you streamline your daily chores, track inventory, manage shopping lists, plan | ||
meals, and keep tabs on household tasks. With Grocy, you can efficiently | ||
manage your pantry, reduce waste, and optimize your shopping experience. Grocy | ||
provides a user-friendly interface to organize your household activities and | ||
track consumables with expiration dates, giving you better control over your | ||
time and resources. | ||
instructions: default credentials; username; admin, password; admin | ||
changeLog: | ||
- date: 2024-12-24 | ||
description: First release | ||
links: | ||
- label: Website | ||
url: https://grocy.info/ | ||
- label: Documentation | ||
url: https://github.com/grocy/docs | ||
- label: Github | ||
url: https://github.com/grocy/grocy | ||
contributors: | ||
- name: Ahson Shaikh | ||
url: https://github.com/MuhammadAhsanDonuts | ||
schema: | ||
type: object | ||
required: | ||
- appServiceName | ||
- appServiceImage | ||
properties: | ||
appServiceName: | ||
type: string | ||
title: App Service Name | ||
default: grocy | ||
appServiceImage: | ||
type: string | ||
title: App Service Image | ||
default: lscr.io/linuxserver/grocy:latest | ||
benefits: | ||
- title: Efficient Inventory Management | ||
description: | ||
Keep track of your pantry and household inventory, ensuring you never run | ||
out of essentials or waste expired items. | ||
- title: Meal Planning and Shopping Lists | ||
description: | ||
Plan meals and automatically generate shopping lists based on your | ||
recipes, saving you time and reducing waste. | ||
- title: Task and Chore Management | ||
description: | ||
Stay organized by assigning and tracking household chores, ensuring | ||
nothing gets overlooked. | ||
- title: Reduce Food Waste | ||
description: | ||
Monitor expiration dates for perishable items, helping you reduce food | ||
waste and save money. | ||
features: | ||
- title: Comprehensive Inventory Tracking | ||
description: | ||
Grocy lets you track all your household consumables with detailed | ||
information, including expiration dates, quantity, and usage. | ||
- title: Recipe Management | ||
description: | ||
Store and organize your favorite recipes, linking them with inventory | ||
items for seamless meal planning. | ||
- title: Barcode Scanning | ||
description: | ||
Use barcode scanning to quickly add or remove items from your inventory. | ||
- title: Task and Chore Scheduler | ||
description: | ||
Assign tasks and manage recurring chores with a built-in scheduler. | ||
- title: Mobile Access | ||
description: | ||
Access Grocy on the go using mobile apps or a responsive web interface. | ||
tags: | ||
- ERP | ||
- Groceries | ||
- Household Management | ||
- Inventory | ||
- Meal Planning | ||
- Tasks |