Mirror from bluesky-social/pds
0
fork

Configure Feed

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

README: use sudo

+3 -3
+3 -3
README.md
··· 133 133 ### Create the Caddyfile 134 134 135 135 ```bash 136 - cat <<CADDYFILE >/data/caddy/etc/caddy/Caddyfile 136 + cat <<CADDYFILE | sudo tee /data/caddy/etc/caddy/Caddyfile 137 137 { 138 138 email you@example.com 139 139 } ··· 147 147 ### Create the PDS env configuration file 148 148 149 149 ```bash 150 - cat <<PDS_CONFIG >/data/pds.env 150 + cat <<PDS_CONFIG | sudo tee /data/pds.env 151 151 PDS_HOSTNAME=example.com 152 152 PDS_DB_SQLITE_LOCATION=/data/pds.sqlite 153 153 PDS_JWT_SECRET=<VALUE> ··· 187 187 Run `docker compose up` to start the three required containers. 188 188 189 189 ```bash 190 - docker compose up --wait --detach 190 + sudo docker compose up --wait --detach 191 191 ``` 192 192 193 193 You should see output similar to this: