ansible-role-firefly/defaults/main.yml

46 lines
1.1 KiB
YAML
Raw Normal View History

---
## General
2023-05-15 11:41:49 +02:00
firefly_image: "fireflyiii/core:latest"
firefly_import_image: "fireflyiii/data-importer:latest"
firefly_http_port_app: 30000
2023-05-15 11:41:49 +02:00
firefly_http_port_import: 30001
firefly_timezone: "Europe/Brussels"
# Map coordinates
firefly_map_lat: 51.983333
firefly_map_long: 5.916667
firefly_map_zoom: 6
# App key must be 32 chars long
firefly_app_key: "12345678901234567890123456789012"
firefly_owner_email: "user@domain.com"
firefly_db_password: "changeme"
firefly_app_name: "Firefly III"
2023-05-15 11:41:49 +02:00
firefly_app_url: "http://10.0.0.35:30000"
# Cronjob token, must be 32 chars long
firefly_static_cron_token: "12345678901234567890123456789012"
# Firefly paths
firefly_root_path: /var/local
firefly_config_path: "{{ firefly_root_path }}/conf/firefly"
# Add other paths here to make sure they're created automatically
#
firefly_skeleton_paths:
- "{{ firefly_config_path }}"
# Add more templates to be copied into the config
firefly_configuration_files:
- "docker-compose.yml"
- "env.firefly.conf"
- "env.db.conf"
2023-05-15 11:41:49 +02:00
- "env.firefly-import.conf"
# Documentation
firefly_documentation_link: "https://www.laurivan.com"