Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add AWS SQS support #113

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,19 @@ RUN mkdir /datadir
ENV NBXPLORER_DATADIR=/datadir
VOLUME /datadir

EXPOSE 32838
ENV NBXPLORER_NETWORK=""
ENV NBXPLORER_BIND=""
ENV NBXPLORER_NOAUTH=""
ENV NBXPLORER_BTCRPCURL=""
ENV NBXPLORER_BTCRPCUSER=""
ENV NBXPLORER_BTCRPCPASSWORD=""
ENV NBXPLORER_BTCNODEENDPOINT=""
ENV NBXPLORER_BTCSTARTHEIGHT=""
ENV NBXPLORER_BTCRESCAN=""
ENV NBXPLORER_AWSSQSBLOCKQUEUEURL=""
ENV NBXPLORER_AWSSQSTRANSACTIONQUEUEURL=""
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is there or why it's empty?



COPY --from=builder "/app" .
ENTRYPOINT ["dotnet", "NBXplorer.dll"]
1 change: 1 addition & 0 deletions NBXplorer.Tests/NBXplorer.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.SQS" Version="3.3.3.22" />
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="3.1.0" />
<PackageReference Include="NBitcoin.TestFramework" Version="1.6.9" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
Expand Down
Loading