···3344DATABASE_URL=postgres://postgres:postgres@localhost:5432/pds
5566-OBJECT_STORAGE_ENDPOINT=
77-OBJECT_STORAGE_REGION=us-east-1
88-OBJECT_STORAGE_BUCKET=pds-blobs
99-OBJECT_STORAGE_ACCESS_KEY=
1010-OBJECT_STORAGE_SECRET_KEY=
1111-1212-# Set to 'true' for MinIO or other services that need path-style addressing
1313-OBJECT_STORAGE_FORCE_PATH_STYLE=false
66+S3_ENDPOINT=http://objsto:9000
77+AWS_REGION=us-east-1
88+S3_BUCKET=pds-blobs
99+AWS_ACCESS_KEY_ID=minioadmin
1010+AWS_SECRET_ACCESS_KEY=minioadmin
14111515-JWT_SECRET=your-super-secret-jwt-key-please-change-me
1616-PDS_HOSTNAME=localhost:3000 # The public-facing hostname of the PDS
1212+# The public-facing hostname of the PDS
1313+PDS_HOSTNAME=localhost:3000
1714PLC_URL=plc.directory
1818-APPVIEW_URL=https://api.bsky.app
···13131414test-others:
1515 cargo test --lib
1616- cargo test --test actor
1716 cargo test --test auth
1818- cargo test --test feed
1919- cargo test --test graph
2017 cargo test --test identity
2121- cargo test --test notification
2218 cargo test --test repo
2319 cargo test --test server
2420 cargo test --test sync
···2020 .await
2121 .expect("Failed to run migrations");
22222323- let state = AppState::new(pool);
2323+ let state = AppState::new(pool).await;
24242525 let app = bspds::app(state);
2626