this repo has no description
0
fork

Configure Feed

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

more renaming

+8 -8
+4 -4
.github/workflows/container-domesday-aws.yaml .github/workflows/container-bluepages-aws.yaml
··· 1 - name: container-domesday-aws 1 + name: container-bluepages-aws 2 2 on: [push] 3 3 env: 4 4 REGISTRY: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_REGISTRY }} 5 5 USERNAME: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_USERNAME }} 6 6 PASSWORD: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_PASSWORD }} 7 7 # github.repository as <account>/<repo> 8 - IMAGE_NAME: domesday 8 + IMAGE_NAME: bluepages 9 9 10 10 jobs: 11 - container-domesday-aws: 11 + container-bluepages-aws: 12 12 if: github.repository == 'bluesky-social/indigo' 13 13 runs-on: ubuntu-latest 14 14 permissions: ··· 44 44 uses: docker/build-push-action@v4 45 45 with: 46 46 context: . 47 - file: ./cmd/domesday/Dockerfile 47 + file: ./cmd/bluepages/Dockerfile 48 48 push: ${{ github.event_name != 'pull_request' }} 49 49 tags: ${{ steps.meta.outputs.tags }} 50 50 labels: ${{ steps.meta.outputs.labels }}
+1 -1
HACKING.md
··· 15 15 - `cmd/sonar`: event stream monitoring tool 16 16 - `cmd/hepa`: auto-moderation rule engine service 17 17 - `cmd/rainbow`: firehose fanout service 18 - - `cmd/domesday`: identity directory service 18 + - `cmd/bluepages`: identity directory service 19 19 - `gen`: dev tool to run CBOR type codegen 20 20 21 21 Packages:
+2 -2
Makefile
··· 91 91 # --crawl-insecure-ws 92 92 93 93 .PHONY: run-dev-ident 94 - run-dev-ident: .env ## Runs 'domesday' identity directory for local dev 95 - GOLOG_LOG_LEVEL=info go run ./cmd/domesday serve 94 + run-dev-ident: .env ## Runs 'bluepages' identity directory for local dev 95 + GOLOG_LOG_LEVEL=info go run ./cmd/bluepages serve 96 96 97 97 .PHONY: build-relay-image 98 98 build-relay-image: ## Builds 'bigsky' Relay docker image
+1 -1
atproto/identity/apidir/examples_test.go
··· 13 13 14 14 ctx := context.Background() 15 15 16 - // will connect to the provided identity server (eg, a 'domesday' instance) 16 + // will connect to the provided identity server (eg, a 'bluepages' instance) 17 17 dir := NewAPIDirectory("http://localhost:6600") 18 18 19 19 handle, _ := syntax.ParseHandle("atproto.com")