├── .gitignore ├── LICENSE.txt ├── README.md ├── config ├── caddy │ └── Caddyfile └── init-postgres │ └── init.sql ├── docker-compose.yaml ├── env.example ├── repos └── .gitkeep └── scripts ├── build.sh └── gen-secrets.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeppelin-social/bluesky-appview/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeppelin-social/bluesky-appview/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeppelin-social/bluesky-appview/HEAD/README.md -------------------------------------------------------------------------------- /config/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeppelin-social/bluesky-appview/HEAD/config/caddy/Caddyfile -------------------------------------------------------------------------------- /config/init-postgres/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeppelin-social/bluesky-appview/HEAD/config/init-postgres/init.sql -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeppelin-social/bluesky-appview/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeppelin-social/bluesky-appview/HEAD/env.example -------------------------------------------------------------------------------- /repos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeppelin-social/bluesky-appview/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/gen-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeppelin-social/bluesky-appview/HEAD/scripts/gen-secrets.sh --------------------------------------------------------------------------------