Merge branch 'DireMunchkin-add-ghostfolio'
This commit is contained in:
commit
d64b94320f
|
@ -34,6 +34,7 @@ This is the official repository for the Tipi App Store. It contains all the apps
|
||||||
- [Freshrss](https://github.com/FreshRSS/FreshRSS) - A free, self-hostable RSS aggregator
|
- [Freshrss](https://github.com/FreshRSS/FreshRSS) - A free, self-hostable RSS aggregator
|
||||||
- [gandi-livedns](https://github.com/jbbodart/gandi-livedns) - Update your Gandi DNS zone records with your WAN IP
|
- [gandi-livedns](https://github.com/jbbodart/gandi-livedns) - Update your Gandi DNS zone records with your WAN IP
|
||||||
- [Ghost](https://github.com/TryGhost/Ghost) - Ghost - Turn your audience into a business
|
- [Ghost](https://github.com/TryGhost/Ghost) - Ghost - Turn your audience into a business
|
||||||
|
- [Ghostfolio](https://github.com/ghostfolio/ghostfolio) - Open Source Wealth Management Software.
|
||||||
- [Gitea](https://github.com/go-gitea/gitea) - Gitea - A painless self-hosted Git service
|
- [Gitea](https://github.com/go-gitea/gitea) - Gitea - A painless self-hosted Git service
|
||||||
- [Gladys Assistant](https://github.com/gladysassistant/gladys) - A privacy-first, open-source home assistant
|
- [Gladys Assistant](https://github.com/gladysassistant/gladys) - A privacy-first, open-source home assistant
|
||||||
- [Gotify](https://github.com/gotify/server) - Gotify - Simple server for sending and receiving notification messages
|
- [Gotify](https://github.com/gotify/server) - Gotify - Simple server for sending and receiving notification messages
|
||||||
|
|
45
apps/ghostfolio/config.json
Normal file
45
apps/ghostfolio/config.json
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"$schema": "../schema.json",
|
||||||
|
"name": "Ghostfolio",
|
||||||
|
"port": 3333,
|
||||||
|
"available": true,
|
||||||
|
"exposable": true,
|
||||||
|
"id": "ghostfolio",
|
||||||
|
"tipi_version": 1,
|
||||||
|
"version": "1.300.0",
|
||||||
|
"categories": ["finance"],
|
||||||
|
"description": "Ghostfolio is a privacy-first, open source dashboard for your personal finances.",
|
||||||
|
"short_desc": "Open Source Wealth Management Software.",
|
||||||
|
"author": "dtslvr",
|
||||||
|
"source": "https://github.com/ghostfolio/ghostfolio",
|
||||||
|
"form_fields": [
|
||||||
|
{
|
||||||
|
"type": "random",
|
||||||
|
"min": 32,
|
||||||
|
"max": 32,
|
||||||
|
"label": "Access token salt",
|
||||||
|
"env_variable": "GHOSTFOLIO_ACCESS_TOKEN_SALT"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "random",
|
||||||
|
"min": 32,
|
||||||
|
"max": 32,
|
||||||
|
"label": "JSON Web Tokens secret key",
|
||||||
|
"env_variable": "GHOSTFOLIO_JWT_SECRET_KEY"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "random",
|
||||||
|
"min": 32,
|
||||||
|
"max": 32,
|
||||||
|
"label": "Database password",
|
||||||
|
"env_variable": "GHOSTFOLIO_DB_PASSWORD"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "random",
|
||||||
|
"min": 32,
|
||||||
|
"max": 32,
|
||||||
|
"label": "Redis password",
|
||||||
|
"env_variable": "GHOSTFOLIO_REDIS_PASSWORD"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
90
apps/ghostfolio/docker-compose.yml
Normal file
90
apps/ghostfolio/docker-compose.yml
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
version: "3.9"
|
||||||
|
|
||||||
|
services:
|
||||||
|
ghostfolio:
|
||||||
|
container_name: ghostfolio
|
||||||
|
image: ghostfolio/ghostfolio:1.300.0
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- ${APP_PORT}:3333
|
||||||
|
environment:
|
||||||
|
NODE_ENV: production
|
||||||
|
HOST: 0.0.0.0
|
||||||
|
PORT: 3333
|
||||||
|
ACCESS_TOKEN_SALT: $GHOSTFOLIO_ACCESS_TOKEN_SALT
|
||||||
|
DATABASE_URL: postgresql://ghostfolio:${GHOSTFOLIO_DB_PASSWORD}@ghostfolio-db:5432/ghostfolio?sslmode=prefer
|
||||||
|
JWT_SECRET_KEY: ${GHOSTFOLIO_JWT_SECRET_KEY}
|
||||||
|
POSTGRES_DB: ghostfolio
|
||||||
|
POSTGRES_USER: ghostfolio
|
||||||
|
POSTGRES_PASSWORD: ${GHOSTFOLIO_DB_PASSWORD}
|
||||||
|
REDIS_HOST: ghostfolio-redis
|
||||||
|
REDIS_PASSWORD: ${GHOSTFOLIO_REDIS_PASSWORD}
|
||||||
|
REDIS_PORT: 6379
|
||||||
|
networks:
|
||||||
|
- tipi_main_network
|
||||||
|
depends_on:
|
||||||
|
ghostfolio-db:
|
||||||
|
condition: service_healthy
|
||||||
|
ghostfolio-redis:
|
||||||
|
condition: service_healthy
|
||||||
|
labels:
|
||||||
|
# Main
|
||||||
|
traefik.enable: true
|
||||||
|
traefik.http.middlewares.ghostfolio-web-redirect.redirectscheme.scheme: https
|
||||||
|
traefik.http.services.ghostfolio.loadbalancer.server.port: 3333
|
||||||
|
# Web
|
||||||
|
traefik.http.routers.ghostfolio-insecure.rule: Host(`${APP_DOMAIN}`)
|
||||||
|
traefik.http.routers.ghostfolio-insecure.entrypoints: web
|
||||||
|
traefik.http.routers.ghostfolio-insecure.service: ghostfolio
|
||||||
|
traefik.http.routers.ghostfolio-insecure.middlewares: ghostfolio-web-redirect
|
||||||
|
# Websecure
|
||||||
|
traefik.http.routers.ghostfolio.rule: Host(`${APP_DOMAIN}`)
|
||||||
|
traefik.http.routers.ghostfolio.entrypoints: websecure
|
||||||
|
traefik.http.routers.ghostfolio.service: ghostfolio
|
||||||
|
traefik.http.routers.ghostfolio.tls.certresolver: myresolver
|
||||||
|
# Local domain
|
||||||
|
traefik.http.routers.ghostfolio-local-insecure.rule: Host(`ghostfolio.${LOCAL_DOMAIN}`)
|
||||||
|
traefik.http.routers.ghostfolio-local-insecure.entrypoints: web
|
||||||
|
traefik.http.routers.ghostfolio-local-insecure.service: ghostfolio
|
||||||
|
traefik.http.routers.ghostfolio-local-insecure.middlewares: ghostfolio-web-redirect
|
||||||
|
# Local domain secure
|
||||||
|
traefik.http.routers.ghostfolio-local.rule: Host(`ghostfolio.${LOCAL_DOMAIN}`)
|
||||||
|
traefik.http.routers.ghostfolio-local.entrypoints: websecure
|
||||||
|
traefik.http.routers.ghostfolio-local.service: ghostfolio
|
||||||
|
traefik.http.routers.ghostfolio-local.tls: true
|
||||||
|
|
||||||
|
ghostfolio-db:
|
||||||
|
container_name: ghostfolio-db
|
||||||
|
image: postgres:15.4-alpine
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
POSTGRES_DB: ghostfolio
|
||||||
|
POSTGRES_USER: ghostfolio
|
||||||
|
POSTGRES_PASSWORD: ${GHOSTFOLIO_DB_PASSWORD}
|
||||||
|
PGDATA: /var/lib/postgresql/data
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "pg_isready", "-d", "ghostfolio"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
|
volumes:
|
||||||
|
- ${APP_DATA_DIR}/data/db:/var/lib/postgresql/data
|
||||||
|
networks:
|
||||||
|
- tipi_main_network
|
||||||
|
|
||||||
|
ghostfolio-redis:
|
||||||
|
container_name: ghostfolio-redis
|
||||||
|
image: redis:7-alpine
|
||||||
|
restart: unless-stopped
|
||||||
|
command: >
|
||||||
|
--requirepass ${GHOSTFOLIO_REDIS_PASSWORD}
|
||||||
|
healthcheck:
|
||||||
|
test: ['CMD', 'redis-cli', 'ping']
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
|
start_period: 30s
|
||||||
|
volumes:
|
||||||
|
- ${APP_DATA_DIR}/data/redis:/data
|
||||||
|
networks:
|
||||||
|
- tipi_main_network
|
27
apps/ghostfolio/metadata/description.md
Normal file
27
apps/ghostfolio/metadata/description.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
**Ghostfolio** is an open source wealth management software built with web technology. The application empowers busy people to keep track of stocks, ETFs or cryptocurrencies and make solid, data-driven investment decisions. The software is designed for personal use in continuous operation.
|
||||||
|
|
||||||
|
## Why Ghostfolio?
|
||||||
|
|
||||||
|
Ghostfolio is for you if you are...
|
||||||
|
|
||||||
|
- 💼 trading stocks, ETFs or cryptocurrencies on multiple platforms
|
||||||
|
- 🏦 pursuing a buy & hold strategy
|
||||||
|
- 🎯 interested in getting insights of your portfolio composition
|
||||||
|
- 👻 valuing privacy and data ownership
|
||||||
|
- 🧘 into minimalism
|
||||||
|
- 🧺 caring about diversifying your financial resources
|
||||||
|
- 🆓 interested in financial independence
|
||||||
|
- 🙅 saying no to spreadsheets
|
||||||
|
- 😎 still reading this list
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- ✅ Create, update and delete transactions
|
||||||
|
- ✅ Multi account management
|
||||||
|
- ✅ Portfolio performance for `Today`, `YTD`, `1Y`, `5Y`, `Max`
|
||||||
|
- ✅ Various charts
|
||||||
|
- ✅ Static analysis to identify potential risks in your portfolio
|
||||||
|
- ✅ Import and export transactions
|
||||||
|
- ✅ Dark Mode
|
||||||
|
- ✅ Zen Mode
|
||||||
|
- ✅ Progressive Web App (PWA) with a mobile-first design
|
BIN
apps/ghostfolio/metadata/logo.jpg
Normal file
BIN
apps/ghostfolio/metadata/logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
Loading…
Reference in New Issue
Block a user