This repository has been archived on 2025-11-17. You can view files and clone it, but cannot push or open issues or pull requests.
Files
akaunting/.env.sample
2025-11-14 22:37:54 -05:00

36 lines
1.1 KiB
Plaintext

TYPE=akaunting
DOMAIN=akaunting.example.com
COMPOSE_FILE="compose.yml"
## Domain aliases
#EXTRA_DOMAINS=', `www.akaunting.example.com`'
## Automatically use subdomains under following domain (anything.example.com)
#WILDCARD_DOMAIN='example.com'
LETS_ENCRYPT_ENV=production
# You should change this to match your reverse proxy protocol, DNS name and port (if non standard port is used)
LOCALE=en-US
# Don't change this unless you rename your database container or use rootless podman, in case of using rootless podman you should set it to 127.0.0.1 (NOT localhost)
DB_HOST=akaunting-db
DB_PORT=3306
# These define the first company to exist on this instance. They are only used during setup.
COMPANY_NAME=My Company
COMPANY_EMAIL=my@company.com
# This will be the first administrative user created on setup.
ADMIN_EMAIL=me@company.com
SECRET_MYSQL_PASSWORD_VERSION=v1
SECRET_MYSQL_ROOT_PASSWORD_VERSION=v1
SECRET_ADMIN_PASSWORD_VERSION=v1
## Enable API Fix to support offline use (without an API key)
# COMPOSE_FILE="$COMPOSE_FILE:compose.api-fix.yml"
# API_FIX=apply