A URL shortener service that uses ATProto to allow self hosting and ensuring the user owns their data
27
fork

Configure Feed

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

at main 12 lines 271 B view raw
1services: 2 at-shorter: 3 platform: linux/amd64 4 container_name: at-shorter 5 image: willdot/at-shorter:latest 6 environment: 7 ENV_LOCATION: "/app/data/at-shorter.env" 8 volumes: 9 - ./data:/app/data 10 ports: 11 - "3005:3005" 12 restart: always