Compare commits
No commits in common. "90ce6167cfd99e7f4b972fb5fbf2097698c78b7d" and "8304f4c645c8b02e93b20067c4f569aa2481df12" have entirely different histories.
90ce6167cf
...
8304f4c645
3 changed files with 15 additions and 9 deletions
|
@ -1,2 +1 @@
|
|||
target/
|
||||
config/endstat_conf.ron
|
||||
|
|
|
@ -20,7 +20,6 @@ WORKDIR /app
|
|||
|
||||
COPY --from=builder /app/target/release/endstat /app
|
||||
COPY ./config /app/config
|
||||
RUN mv /app/config/endstat_conf.example.ron /app/config/endstat_conf.ron
|
||||
EXPOSE 8080
|
||||
|
||||
CMD ["/app/endstat"]
|
||||
|
|
|
@ -35,13 +35,21 @@
|
|||
}
|
||||
|
||||
p { margin: 0; }
|
||||
a { color: #fff; text-decoration: none; }
|
||||
a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
h1 { margin: 0; }
|
||||
h3 { margin: 0; text-align: justify; }
|
||||
|
||||
h3 { margin: 0; text-align: justify; flex-shrink: 0; }
|
||||
.info { display: flex; align-items: baseline; }
|
||||
.info a { text-align: right; }
|
||||
.spacer { flex: 1 0 1rem; }
|
||||
.info {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
}
|
||||
|
||||
.spacer {
|
||||
flex: 1 0 1rem;
|
||||
}
|
||||
|
||||
.indicator {
|
||||
width: 1rem;
|
||||
|
@ -51,7 +59,7 @@
|
|||
.ok { background-color: #4ed34e; }
|
||||
.warn { background-color: #fcfc64; }
|
||||
.error { background-color: #ff392e; }
|
||||
.error-msg { margin-top: 1rem; font-family: 'Source Code Pro', monospace; }
|
||||
.error-msg { margin-top: 1rem; font-family: 'Source Code Pro', monospace;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -68,7 +76,7 @@
|
|||
<div class="info">
|
||||
<h3>{{ status.endpoint }}</h3>
|
||||
<div class="spacer"></div>
|
||||
<a href="{{ status.location }}" target="_blank">{{ status.location }}</a>
|
||||
<a href="{{ status.location }}">{{ status.location }}</a>
|
||||
</div>
|
||||
{% if status.error %}<p class="error-msg">{{ status.error }}</p>{% endif %}
|
||||
</main>
|
||||
|
|
Loading…
Reference in a new issue