this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

tranquil

+66
+44
compose.yml
··· 69 69 - ./data/piper.env 70 70 volumes: 71 71 - ./data/piper:/db 72 + 73 + tranquil: 74 + build: https://tangled.org/tranquil.farm/tranquil-pds.git 75 + restart: unless-stopped 76 + ports: 77 + - 8020:3000 78 + environment: 79 + DATABASE_URL: postgres://postgres:postgres@tranquil-db:5432/pds 80 + volumes: 81 + - ./data/tranquil.toml:/etc/tranquil-pds/config.toml:ro 82 + - tranquil_blob:/var/lib/tranquil/blobs 83 + - tranquil_backup:/var/lib/tranquil/backups 84 + depends_on: 85 + - tranquil-db 86 + healthcheck: 87 + test: 88 + ["CMD", "wget", "-q", "--spider", "http://localhost:3000/xrpc/_health"] 89 + interval: 30s 90 + timeout: 10s 91 + retries: 3 92 + start_period: 10s 93 + 94 + tranquil-db: 95 + image: postgres:18-alpine 96 + restart: unless-stopped 97 + environment: 98 + POSTGRES_USER: postgres 99 + POSTGRES_PASSWORD: postgres 100 + POSTGRES_DB: pds 101 + ports: 102 + - "5432:5432" 103 + volumes: 104 + - tranquil_postgres:/var/lib/postgresql 105 + healthcheck: 106 + test: ["CMD-SHELL", "pg_isready -U tranquil_pds -d pds"] 107 + interval: 10s 108 + timeout: 5s 109 + retries: 5 110 + start_period: 10s 111 + 112 + volumes: 113 + tranquil_postgres: 114 + tranquil_blob: 115 + tranquil_backup:
+22
data/tranquil.toml.template
··· 1 + [server] 2 + hostname = "tranquil.abnormal.zip" 3 + enable_pds_hosted_did_web = false 4 + age_assurance_override = false 5 + invite_code_required = true 6 + banned_words = 7 + contact_email = "admin@vielle.dev" 8 + 9 + [secrets] 10 + jwt_secret = 11 + dpop_secret = 12 + 13 + [backup] 14 + enabled = true 15 + 16 + [email] 17 + # from_address = "tranquil@abnormal.zip" 18 + # from_name = "tranquil@abnormal.zip" 19 + # sendmail_path = "/usr/sbin/sendmail" 20 + 21 + [discord] 22 + bot_token =