mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
Add I Hate Money entry to meta.json (#227)
* Add I Hate Money entry to meta.json - Introduced a new entry for I Hate Money, a web application for managing shared expenses, including relevant links and tags. * Add GitLab CE entry to meta.json - Introduced a new entry for GitLab Community Edition, including a detailed description, logo, relevant links, and tags for better categorization.
This commit is contained in:
committed by
GitHub
parent
532eb65cbc
commit
0ff9c62a31
33
blueprints/ihatemoney/docker-compose.yml
Normal file
33
blueprints/ihatemoney/docker-compose.yml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
version: "3.9"
|
||||||
|
|
||||||
|
services:
|
||||||
|
ihatemoney:
|
||||||
|
image: ihatemoney/ihatemoney:latest
|
||||||
|
environment:
|
||||||
|
- DEBUG=False
|
||||||
|
- ACTIVATE_DEMO_PROJECT=True
|
||||||
|
- ACTIVATE_ADMIN_DASHBOARD=False
|
||||||
|
- ADMIN_PASSWORD=${ADMIN_PASSWORD}
|
||||||
|
- ALLOW_PUBLIC_PROJECT_CREATION=True
|
||||||
|
- BABEL_DEFAULT_TIMEZONE=UTC
|
||||||
|
- GREENLET_TEST_CPP=no
|
||||||
|
- MAIL_DEFAULT_SENDER=Budget manager <admin@example.com>
|
||||||
|
- MAIL_PASSWORD=${MAIL_PASSWORD} # used for mail service auth
|
||||||
|
- MAIL_PORT=25
|
||||||
|
- MAIL_SERVER=localhost
|
||||||
|
- MAIL_USE_SSL=False
|
||||||
|
- MAIL_USE_TLS=False
|
||||||
|
- MAIL_USERNAME=${MAIL_USERNAME} # used for mail service auth
|
||||||
|
- SECRET_KEY=${SECRET_KEY} # used for session security
|
||||||
|
- SESSION_COOKIE_SECURE=True
|
||||||
|
- SHOW_ADMIN_EMAIL=True
|
||||||
|
- SQLALCHEMY_DATABASE_URI=sqlite:////database/ihatemoney.db
|
||||||
|
- SQLALCHEMY_TRACK_MODIFICATIONS=False
|
||||||
|
- APPLICATION_ROOT=/
|
||||||
|
- ENABLE_CAPTCHA=False
|
||||||
|
- LEGAL_LINK=
|
||||||
|
- PORT=8000
|
||||||
|
- PUID=0
|
||||||
|
- PGID=0
|
||||||
|
volumes:
|
||||||
|
- ../files/sqlite-db:/database
|
||||||
BIN
blueprints/ihatemoney/image.png
Normal file
BIN
blueprints/ihatemoney/image.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
43
blueprints/ihatemoney/template.toml
Normal file
43
blueprints/ihatemoney/template.toml
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
[variables]
|
||||||
|
main_domain = "${domain}"
|
||||||
|
ADMIN_PASSWORD = "${password:32}"
|
||||||
|
MAIL_USERNAME = "${username}"
|
||||||
|
MAIL_PASSWORD = "${password:32}"
|
||||||
|
SECRET_KEY = "${password:64}"
|
||||||
|
|
||||||
|
[config]
|
||||||
|
[[config.domains]]
|
||||||
|
serviceName = "ihatemoney"
|
||||||
|
port = 8000
|
||||||
|
host = "${main_domain}"
|
||||||
|
|
||||||
|
[config.env]
|
||||||
|
DEBUG = "False"
|
||||||
|
ACTIVATE_DEMO_PROJECT = "True"
|
||||||
|
ACTIVATE_ADMIN_DASHBOARD = "False"
|
||||||
|
ADMIN_PASSWORD = "${ADMIN_PASSWORD}" # used for admin access
|
||||||
|
ALLOW_PUBLIC_PROJECT_CREATION = "True"
|
||||||
|
BABEL_DEFAULT_TIMEZONE = "UTC"
|
||||||
|
GREENLET_TEST_CPP = "no"
|
||||||
|
MAIL_DEFAULT_SENDER = "Budget manager <admin@example.com>"
|
||||||
|
MAIL_PASSWORD = "${MAIL_PASSWORD}" # used for mail service auth
|
||||||
|
MAIL_PORT = "25"
|
||||||
|
MAIL_SERVER = "localhost"
|
||||||
|
MAIL_USE_SSL = "False"
|
||||||
|
MAIL_USE_TLS = "False"
|
||||||
|
MAIL_USERNAME = "${MAIL_USERNAME}" # used for mail service auth
|
||||||
|
SECRET_KEY = "${SECRET_KEY}" # used for session security
|
||||||
|
SESSION_COOKIE_SECURE = "True"
|
||||||
|
SHOW_ADMIN_EMAIL = "True"
|
||||||
|
SQLALCHEMY_DATABASE_URI = "sqlite:////database/ihatemoney.db"
|
||||||
|
SQLALCHEMY_TRACK_MODIFICATIONS = "False"
|
||||||
|
APPLICATION_ROOT = "/"
|
||||||
|
ENABLE_CAPTCHA = "False"
|
||||||
|
LEGAL_LINK = ""
|
||||||
|
PORT = "8000"
|
||||||
|
PUID = "0"
|
||||||
|
PGID = "0"
|
||||||
|
|
||||||
|
[[config.mounts]]
|
||||||
|
volumeName = "sqlite-db"
|
||||||
|
mountPath = "/database"
|
||||||
20
meta.json
20
meta.json
@@ -2741,6 +2741,26 @@
|
|||||||
},
|
},
|
||||||
"tags": ["image-hosting", "file-sharing", "self-hosted", "media", "gallery"]
|
"tags": ["image-hosting", "file-sharing", "self-hosted", "media", "gallery"]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "ihatemoney",
|
||||||
|
"name": "I Hate Money",
|
||||||
|
"version": "latest",
|
||||||
|
"description": "I Hate Money is a web application for managing shared expenses among groups of people. It helps you track who owes what to whom, making it easy to split bills and manage group finances.",
|
||||||
|
"logo": "image.png",
|
||||||
|
"links": {
|
||||||
|
"github": "https://github.com/spiral-project/ihatemoney",
|
||||||
|
"website": "https://ihatemoney.org/",
|
||||||
|
"docs": "https://ihatemoney.readthedocs.io/"
|
||||||
|
},
|
||||||
|
"tags": [
|
||||||
|
"budget",
|
||||||
|
"finance",
|
||||||
|
"expense-sharing",
|
||||||
|
"self-hosted",
|
||||||
|
"money-management",
|
||||||
|
"group-finances"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "searxng",
|
"id": "searxng",
|
||||||
"name": "SearXNG",
|
"name": "SearXNG",
|
||||||
|
|||||||
Reference in New Issue
Block a user