From 4fefa459bf1e5a0e9cda3386c8385777c831333c Mon Sep 17 00:00:00 2001 From: John Cairns Date: Wed, 29 Nov 2023 14:27:51 -0600 Subject: [PATCH] rename project postal_service --- .vscode/extensions.json | 3 ++- Dockerfile | 6 +----- README.md | 6 ++++-- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 61ed5d4..8fa2e90 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,5 +1,6 @@ { "recommendations": [ - "rust-lang.rust-analyzer" + "rust-lang.rust-analyzer", + "lanza.lldb-vscode", ] } \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 4d256ef..ac5ecf2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,7 @@ FROM ghcr.io/xmtp/rust:latest USER xmtp -RUN ~xmtp/.cargo/bin/rustup toolchain install stable -RUN ~xmtp/.cargo/bin/rustup component add rustfmt -RUN ~xmtp/.cargo/bin/rustup component add clippy - -WORKDIR /workspaces/gateway +WORKDIR /workspaces/postal_service COPY --chown=xmtp:xmtp . . ENV PATH=~xmtp/.cargo/bin:$PATH diff --git a/README.md b/README.md index ab58ce5..8c50eef 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -# XMTP Gateway Node +# XMTP Postal Service Node + +This postal service supports the XMTP inbox backed by a decentralized network. ## Quick Start (Dev Containers) @@ -11,5 +13,5 @@ or Command line build using docker ```bash -$ docker build . -t xmtp_gateway:1 +$ docker build . -t xmtp_postal_service:1 ```