Skip to content

Commit a15a0d6

Browse files
committed
Merge branch 'aip-61-adex-v5' into test_harness_analytics
2 parents b8c5396 + 86b5be8 commit a15a0d6

35 files changed

+1178
-879
lines changed

.github/workflows/docs.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
on:
2+
push:
3+
branches:
4+
- aip-61-adex-v5
5+
6+
name: Deploy docs
7+
8+
jobs:
9+
deploy-docs:
10+
name: Deploy docs on gh-pages
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
with:
15+
submodules: true
16+
- name: Build docs
17+
run: cargo doc --no-deps
18+
- name: Prepare /docs & index file
19+
run: |
20+
rm -rf ./docs
21+
echo "<meta http-equiv=\"refresh\" content=\"0; url=sentry\">" > target/doc/index.html
22+
cp -r target/doc ./docs
23+
- name: Deploy gh-pages
24+
# if: github.ref == 'refs/heads/aip-61-adex-v5'
25+
uses: peaceiris/actions-gh-pages@v3
26+
with:
27+
github_token: ${{ secrets.GITHUB_TOKEN }}
28+
publish_dir: ./docs

.travis.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ FROM ubuntu:20.04
1919

2020
RUN apt update && apt-get install -y libssl-dev ca-certificates
2121

22+
# `production` or `development` - default: `development`
23+
ENV ENV=
24+
2225
# `ethereum` or `dummy`
2326
ENV ADAPTER=
2427

Dockerfile-sentry

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,16 @@ FROM ubuntu:20.04
4545

4646
RUN apt update && apt-get install -y libssl-dev ca-certificates
4747

48+
# `production` or `development` - default: `development`
49+
ENV ENV=
50+
51+
# Redis URL - default: `redis://127.0.0.1:6379`
52+
ENV READIS_URL=
53+
# The IP address on which the sentry server will be listening - default: `0.0.0.0`
54+
ENV IP_ADDR=
55+
# The Port on which the sentry server will be listening - default: `8005`
56+
ENV PORT=
57+
4858
# `ethereum` or `dummy`
4959
ENV ADAPTER=
5060

0 commit comments

Comments
 (0)