mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-05-24 16:25:18 +00:00
337a6a3b76
We have a lot of verbose headers, and i think now is the best opportunity we have to become reuse compliant given that we just did two other similar maintenance changes (prettier, typescirpt5 & eslint9 & typescript-eslint). * synapse_antispam resuse headers. * delete old unused tslint.json. * Add REUSE to pre-commit config. * reuse info for config directory.
20 lines
960 B
Bash
Executable File
20 lines
960 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2024 Gnuxie <Gnuxie@protonmail.com>
|
|
# SPDX-FileCopyrightText: 2022 The Matrix.org Foundation C.I.C.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0 AND AFL-3.0
|
|
|
|
# This is used as the entrypoint in the mjolnir Dockerfile.
|
|
# We want to transition away form people running the image without specifying `bot` or `appservice`.
|
|
# So if eventually cli arguments are provided for the bot version, we want this to be the opportunity to move to `bot`.
|
|
# Therefore using arguments without specifying `bot` (or appservice) is unsupported.
|
|
# We maintain the behaviour where if it looks like someone is providing an executable to `docker run`, then we will execute that instead.
|
|
# This aids configuration and debugging of the image if for example node needed to be started via another method.
|
|
case "$1" in
|
|
bot) shift; set -- node /mjolnir/index.js "$@";;
|
|
appservice) shift; set -- node /mjolnir/appservice/cli.js "$@";;
|
|
esac
|
|
|
|
exec "$@";
|