A fork of pds-dash for selfhosted.social
at main 649 B view raw
1# The base URL of the PDS (Personal Data Server) 2PUBLIC_PDS_URL=https://selfhosted.social 3 4# Theme to be used (must match a folder in the themes/ directory) 5VITE_THEME=dark 6 7# The base URL of the frontend service for linking to replies/quotes/accounts etc. 8PUBLIC_FRONTEND_URL=https://bsky.app 9 10# Maximum number of posts to fetch from the PDS per request 11# Should be around 20 for about 10 users on the PDS 12# The more users you have, the lower the number should be 13PUBLIC_MAX_POSTS=10 14 15# Footer text for the dashboard. Supports HTML. 16PUBLIC_FOOTER_TEXT= 17 18# Whether to show posts with timestamps that are in the future 19PUBLIC_SHOW_FUTURE_POSTS=false