Skip to content

Commit

Permalink
No Agenda Stream upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
codedmonkey committed May 14, 2024
1 parent a0d19e0 commit adede29
Show file tree
Hide file tree
Showing 36 changed files with 66 additions and 331 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ package-lock.json
coverage/
public/
dist/

/.env
38 changes: 19 additions & 19 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
FROM node:21-alpine

ARG THELOUNGE_VERSION=4.4.3
FROM node:21-alpine AS build

ENV NODE_ENV production

ENV THELOUNGE_HOME "/srv/config"
COPY config/ /srv/config

# Expose HTTP.
ENV PORT 9000
EXPOSE ${PORT}
WORKDIR /srv

COPY . /srv

ENTRYPOINT ["/srv/docker-entrypoint.sh"]
CMD ["/srv/index.js", "start"]
RUN set -eux; \
apk --update --no-cache --virtual build-deps add python3 build-base git; \
ln -sf python3 /usr/bin/python; \
yarn --non-interactive install; \
yarn run build

FROM node:21-alpine AS app

ENV NODE_ENV production
ENV THELOUNGE_HOME "/srv/config"

CMD ["/srv/index.js", "start"]
ENTRYPOINT ["sh"]
EXPOSE 9000
USER node
WORKDIR /srv
COPY . /srv

# Install thelounge.
RUN apk --update --no-cache --virtual build-deps add python3 build-base git && \
ln -sf python3 /usr/bin/python && \
yarn --non-interactive install && \
yarn --non-interactive cache clean && \
yarn build && \
apk del --purge build-deps && \
rm -rf /root/.cache /tmp /usr/bin/python \
COPY --from=build --chown=node:node /srv /srv
2 changes: 1 addition & 1 deletion client/components/Settings/General.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Add Troll Room to Home screen
</button>
<button
v-if="canRegisterProtocol"
v-if="false"
type="button"
class="btn"
@click.prevent="registerProtocol"
Expand Down
2 changes: 1 addition & 1 deletion client/components/Windows/Livestream.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

<p>
<a
href="https://www.noagendadonatins.com"
href="https://www.noagendadonations.com"
target="_blank"
rel="noopener"
class="website-link"
Expand Down
Binary file modified client/favicon.ico
Binary file not shown.
Binary file added client/img/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/img/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/img/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed client/img/favicon-alerted.ico
Binary file not shown.
Binary file not shown.
Binary file removed client/img/icon-alerted-grey-bg-192x192px.png
Binary file not shown.
1 change: 0 additions & 1 deletion client/img/icon-black-transparent-bg.svg

This file was deleted.

Binary file removed client/img/logo-grey-bg-120x120px.png
Binary file not shown.
Binary file removed client/img/logo-grey-bg-152x152px.png
Binary file not shown.
Binary file removed client/img/logo-grey-bg-167x167px.png
Binary file not shown.
Binary file removed client/img/logo-grey-bg-180x180px.png
Binary file not shown.
Binary file removed client/img/logo-grey-bg-192x192px.png
Binary file not shown.
Binary file removed client/img/logo-grey-bg-512x512px.png
Binary file not shown.
1 change: 0 additions & 1 deletion client/img/logo-grey-bg.svg

This file was deleted.

1 change: 0 additions & 1 deletion client/img/logo-horizontal-transparent-bg-inverted.svg

This file was deleted.

1 change: 0 additions & 1 deletion client/img/logo-horizontal-transparent-bg.svg

This file was deleted.

1 change: 0 additions & 1 deletion client/img/logo-transparent-bg-inverted.svg

This file was deleted.

1 change: 0 additions & 1 deletion client/img/logo-transparent-bg.svg

This file was deleted.

1 change: 0 additions & 1 deletion client/img/logo-vertical-transparent-bg-inverted.svg

This file was deleted.

1 change: 0 additions & 1 deletion client/img/logo-vertical-transparent-bg.svg

This file was deleted.

Loading

0 comments on commit adede29

Please sign in to comment.