mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-06-27 17:22:42 +02:00
Update Docker builds to publish to ghcr.io & update README (#1067)
This commit is contained in:
parent
62c954943d
commit
e494287d1d
7 changed files with 218 additions and 125 deletions
78
.github/workflows/pr-release.yml
vendored
Normal file
78
.github/workflows/pr-release.yml
vendored
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
name: Release snapshot of PR
|
||||||
|
on:
|
||||||
|
workflow_run:
|
||||||
|
workflows: ["Build snapshot of PR"]
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release-and-comment:
|
||||||
|
name: Release snapshot and comment in PR
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
attestations: write
|
||||||
|
id-token: write
|
||||||
|
steps:
|
||||||
|
- name: Download images
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
path: /tmp/images
|
||||||
|
pattern: image-*
|
||||||
|
merge-multiple: true
|
||||||
|
run-id: ${{ github.event.workflow_run.id }}
|
||||||
|
github-token: ${{ secrets.WORKFLOW_PAT }}
|
||||||
|
|
||||||
|
- name: Load image
|
||||||
|
run: |
|
||||||
|
docker load --input /tmp/images/image-amd64.tar
|
||||||
|
docker load --input /tmp/images/image-arm64.tar
|
||||||
|
|
||||||
|
- name: Download PR number
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
path: /tmp/pull_request_number
|
||||||
|
pattern: pull_request_number
|
||||||
|
run-id: ${{ github.event.workflow_run.id }}
|
||||||
|
github-token: ${{ secrets.WORKFLOW_PAT }}
|
||||||
|
|
||||||
|
- name: Read the pull_request_number.txt file
|
||||||
|
id: pull_request_number_reader
|
||||||
|
uses: juliangruber/read-file-action@v1.0.0
|
||||||
|
with:
|
||||||
|
path: ./pull_request_number/pull_request_number.txt
|
||||||
|
|
||||||
|
- name: Set up Buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
|
- name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.repository_owner }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Push
|
||||||
|
working-directory: /tmp/digests
|
||||||
|
run: docker buildx imagetools create -t 'ghcr.io/museofficial/muse:pr-${{ github.event.number }}' -t 'ghcr.io/museofficial/muse:${{ github.event.pull_request.head.sha }}' 'ghcr.io/museofficial/muse:${{ github.event.pull_request.head.sha }}-arm64' 'ghcr.io/museofficial/muse:${{ github.event.pull_request.head.sha }}-amd64'
|
||||||
|
|
||||||
|
- name: Create comment
|
||||||
|
uses: marocchino/sticky-pull-request-comment@v2
|
||||||
|
with:
|
||||||
|
header: "pr-release"
|
||||||
|
number: ${{ steps.pull_request_number_reader.outputs.content }}
|
||||||
|
message: |
|
||||||
|
#### :package: A new release has been made for this pull request.
|
||||||
|
|
||||||
|
To play around with this PR, pull `ghcr.io/museofficial/muse:pr-${{ github.event.number }}` or `ghcr.io/museofficial/muse:${{ github.event.pull_request.head.sha }}`.
|
||||||
|
|
||||||
|
Images are available for x86_64 and ARM64.
|
||||||
|
|
||||||
|
> Latest commit: ${{ github.event.pull_request.head.sha }}
|
86
.github/workflows/pr-snapshot.yml
vendored
Normal file
86
.github/workflows/pr-snapshot.yml
vendored
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
name: Build snapshot of PR
|
||||||
|
|
||||||
|
on: pull_request
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY_IMAGE: ghcr.io/museofficial/muse
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build snapshot
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
runner-platform:
|
||||||
|
- ubuntu-latest
|
||||||
|
- namespace-profile-default-arm64
|
||||||
|
include:
|
||||||
|
- runner-platform: ubuntu-latest
|
||||||
|
build-arch: linux/amd64
|
||||||
|
tagged-platform: amd64
|
||||||
|
- runner-platform: namespace-profile-default-arm64
|
||||||
|
build-arch: linux/arm64
|
||||||
|
tagged-platform: arm64
|
||||||
|
runs-on: ${{ matrix.runner-platform }}
|
||||||
|
steps:
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
platform=${{ matrix.build-arch }}
|
||||||
|
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Docker meta
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v5
|
||||||
|
with:
|
||||||
|
images: ${{ env.REGISTRY_IMAGE }}
|
||||||
|
tags: type=ref,event=pr
|
||||||
|
|
||||||
|
- name: Set up Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.repository_owner }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Get current time
|
||||||
|
uses: josStorer/get-current-time@v2
|
||||||
|
id: current-time
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
id: build
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
outputs: type=docker,dest=/tmp/image.tar
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
platforms: ${{ matrix.build-arch }}
|
||||||
|
build-args: |
|
||||||
|
COMMIT_HASH=${{ github.sha }}
|
||||||
|
BUILD_DATE=${{ steps.current-time.outputs.time }}
|
||||||
|
|
||||||
|
- name: Export digest
|
||||||
|
run: |
|
||||||
|
mkdir -p /tmp/digests
|
||||||
|
digest="${{ steps.build.outputs.digest }}"
|
||||||
|
touch "/tmp/digests/${digest#sha256:}"
|
||||||
|
|
||||||
|
- name: Upload image
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: image-${{ env.PLATFORM_PAIR }}
|
||||||
|
path: /tmp/image.tar
|
||||||
|
if-no-files-found: error
|
||||||
|
retention-days: 1
|
||||||
|
|
||||||
|
- name: Save PR number in artifact
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
PR_NUMBER: ${{ github.event.number }}
|
||||||
|
run: echo $PR_NUMBER > /tmp/pull_request_number.txt
|
||||||
|
- name: Upload PR number
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: pull_request_number
|
||||||
|
path: /tmp/pull_request_number.txt
|
||||||
|
overwrite: true
|
91
.github/workflows/pr.yml
vendored
91
.github/workflows/pr.yml
vendored
|
@ -1,91 +0,0 @@
|
||||||
name: PR Workflow
|
|
||||||
|
|
||||||
on: pull_request_target
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
release-snapshot:
|
|
||||||
name: Release snapshot
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
runner-platform:
|
|
||||||
- ubuntu-latest
|
|
||||||
- buildjet-4vcpu-ubuntu-2204-arm
|
|
||||||
include:
|
|
||||||
- runner-platform: ubuntu-latest
|
|
||||||
build-arch: linux/amd64
|
|
||||||
tagged-platform: amd64
|
|
||||||
- runner-platform: buildjet-4vcpu-ubuntu-2204-arm
|
|
||||||
build-arch: linux/arm64
|
|
||||||
tagged-platform: arm64
|
|
||||||
runs-on: ${{ matrix.runner-platform }}
|
|
||||||
steps:
|
|
||||||
- name: Set up Buildx
|
|
||||||
uses: docker/setup-buildx-action@v1
|
|
||||||
|
|
||||||
- name: Cache Docker layers
|
|
||||||
# AWS data transfer is pricy
|
|
||||||
if: ${{ matrix.runner-platform != 'buildjet-4vcpu-ubuntu-2204-arm' }}
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: /tmp/.buildx-cache
|
|
||||||
key: ${{ runner.os }}-buildx-prs-${{ matrix.build-arch }}-${{ github.event.pull_request.head.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-buildx-prs-${{ matrix.build-arch }}
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v1
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
ref: ${{ github.event.pull_request.head.sha }}
|
|
||||||
|
|
||||||
- name: Get current time
|
|
||||||
uses: josStorer/get-current-time@v2
|
|
||||||
id: current-time
|
|
||||||
|
|
||||||
- name: Build and push
|
|
||||||
id: docker_build
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
push: true
|
|
||||||
tags: codetheweb/muse:${{ github.event.pull_request.head.sha }}-${{ matrix.tagged-platform }}
|
|
||||||
cache-from: type=local,src=/tmp/.buildx-cache
|
|
||||||
cache-to: type=local,dest=/tmp/.buildx-cache,mode=min
|
|
||||||
platforms: ${{ matrix.build-arch }}
|
|
||||||
build-args: |
|
|
||||||
COMMIT_HASH=${{ github.sha }}
|
|
||||||
BUILD_DATE=${{ steps.current-time.outputs.time }}
|
|
||||||
|
|
||||||
combine-and-comment:
|
|
||||||
name: Combine platform tags and leave comment
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: release-snapshot
|
|
||||||
steps:
|
|
||||||
- name: Set up Buildx
|
|
||||||
uses: docker/setup-buildx-action@v1
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v1
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Combine tags
|
|
||||||
run: docker buildx imagetools create -t 'codetheweb/muse:pr-${{ github.event.number }}' -t 'codetheweb/muse:${{ github.event.pull_request.head.sha }}' 'codetheweb/muse:${{ github.event.pull_request.head.sha }}-arm64' 'codetheweb/muse:${{ github.event.pull_request.head.sha }}-amd64'
|
|
||||||
|
|
||||||
- name: Create comment
|
|
||||||
uses: marocchino/sticky-pull-request-comment@v2
|
|
||||||
with:
|
|
||||||
header: "pr-release"
|
|
||||||
message: |
|
|
||||||
#### :package: A new release has been made for this pull request.
|
|
||||||
|
|
||||||
To play around with this PR, pull `codetheweb/muse:pr-${{ github.event.number }}` or `codetheweb/muse:${{ github.event.pull_request.head.sha }}`.
|
|
||||||
|
|
||||||
Images are available for x86_64 and ARM64.
|
|
||||||
|
|
||||||
> Latest commit: ${{ github.event.pull_request.head.sha }}
|
|
68
.github/workflows/publish.yml
vendored
68
.github/workflows/publish.yml
vendored
|
@ -11,28 +11,23 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
runner-platform:
|
runner-platform:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
- buildjet-4vcpu-ubuntu-2204-arm
|
- namespace-profile-default-arm64
|
||||||
include:
|
include:
|
||||||
- runner-platform: ubuntu-latest
|
- runner-platform: ubuntu-latest
|
||||||
build-arch: linux/amd64
|
build-arch: linux/amd64
|
||||||
tagged-platform: amd64
|
tagged-platform: amd64
|
||||||
- runner-platform: buildjet-4vcpu-ubuntu-2204-arm
|
- runner-platform: namespace-profile-default-arm64
|
||||||
build-arch: linux/arm64
|
build-arch: linux/arm64
|
||||||
tagged-platform: arm64
|
tagged-platform: arm64
|
||||||
runs-on: ${{ matrix.runner-platform }}
|
runs-on: ${{ matrix.runner-platform }}
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
attestations: write
|
||||||
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Buildx
|
- name: Set up Buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Cache Docker layers
|
|
||||||
# AWS data transfer is pricy
|
|
||||||
if: ${{ matrix.runner-platform != 'buildjet-4vcpu-ubuntu-2204-arm' }}
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: /tmp/.buildx-cache
|
|
||||||
key: ${{ runner.os }}-buildx-prs-${{ matrix.build-arch }}-${{ github.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-buildx-prs-${{ matrix.build-arch }}
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v1
|
||||||
|
@ -40,19 +35,26 @@ jobs:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.repository_owner }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Get current time
|
- name: Get current time
|
||||||
uses: josStorer/get-current-time@v2
|
uses: josStorer/get-current-time@v2
|
||||||
id: current-time
|
id: current-time
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
id: docker_build
|
id: docker_build
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
push: true
|
push: true
|
||||||
tags: codetheweb/muse:${{ github.sha }}-${{ matrix.tagged-platform }}
|
tags: |
|
||||||
|
codetheweb/muse:${{ github.sha }}-${{ matrix.tagged-platform }}
|
||||||
|
ghcr.io/museofficial/muse:${{ github.sha }}-${{ matrix.tagged-platform }}
|
||||||
platforms: ${{ matrix.build-arch }}
|
platforms: ${{ matrix.build-arch }}
|
||||||
cache-from: type=local,src=/tmp/.buildx-cache
|
|
||||||
cache-to: type=local,dest=/tmp/.buildx-cache,mode=min
|
|
||||||
build-args: |
|
build-args: |
|
||||||
COMMIT_HASH=${{ github.sha }}
|
COMMIT_HASH=${{ github.sha }}
|
||||||
BUILD_DATE=${{ steps.current-time.outputs.time }}
|
BUILD_DATE=${{ steps.current-time.outputs.time }}
|
||||||
|
@ -73,21 +75,37 @@ jobs:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Get tags
|
- name: Login to GitHub Container Registry
|
||||||
id: get-tags
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.repository_owner }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Get tags (Docker Hub)
|
||||||
|
id: get-tags-dockerhub
|
||||||
uses: Surgo/docker-smart-tag-action@v1
|
uses: Surgo/docker-smart-tag-action@v1
|
||||||
with:
|
with:
|
||||||
docker_image: codetheweb/muse
|
docker_image: codetheweb/muse
|
||||||
|
|
||||||
- name: Combine tags
|
- name: Get tags (ghcr.io)
|
||||||
run: docker buildx imagetools create $(echo '${{ steps.get-tags.outputs.tag }}' | tr "," "\0" | xargs -0 printf -- '-t %s ') 'codetheweb/muse:${{ github.sha }}-arm64' 'codetheweb/muse:${{ github.sha }}-amd64'
|
id: get-tags-ghcr
|
||||||
|
uses: Surgo/docker-smart-tag-action@v1
|
||||||
|
with:
|
||||||
|
docker_image: codetheweb/muse
|
||||||
|
|
||||||
|
- name: Combine tags (Docker Hub)
|
||||||
|
run: docker buildx imagetools create $(echo '${{ steps.get-tags-dockerhub.outputs.tag }}' | tr "," "\0" | xargs -0 printf -- '-t %s ') 'codetheweb/muse:${{ github.sha }}-arm64' 'codetheweb/muse:${{ github.sha }}-amd64'
|
||||||
|
|
||||||
|
- name: Combine tags (GitHub Container Registry)
|
||||||
|
run: docker buildx imagetools create $(echo '${{ steps.get-tags-ghcr.outputs.tag }}' | tr "," "\0" | xargs -0 printf -- '-t %s ') 'ghcr.io/museofficial/muse:${{ github.sha }}-arm64' 'ghcr.io/museofficial/muse:${{ github.sha }}-amd64'
|
||||||
|
|
||||||
- name: Update Docker Hub description
|
- name: Update Docker Hub description
|
||||||
uses: peter-evans/dockerhub-description@v2.4.3
|
uses: peter-evans/dockerhub-description@v2.4.3
|
||||||
env:
|
with:
|
||||||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
DOCKERHUB_REPOSITORY: codetheweb/muse
|
repository: codetheweb/muse
|
||||||
|
|
||||||
release:
|
release:
|
||||||
name: Create GitHub release
|
name: Create GitHub release
|
||||||
|
|
16
README.md
16
README.md
|
@ -1,8 +1,10 @@
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img width="250" height="250" src="https://raw.githubusercontent.com/codetheweb/muse/master/.github/logo.png">
|
<img width="250" height="250" src="https://raw.githubusercontent.com/museofficial/muse/master/.github/logo.png">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
**🔎 I'm currently looking for maintainers.** Check out [this issue](https://github.com/codetheweb/muse/issues/1063) for details.
|
> [!WARNING]
|
||||||
|
> [@codetheweb](https://github.com/codetheweb) (me) is no longer the primary maintainer of Muse. **If you use the Docker image, update your image source to `ghcr.io/museofficial/muse`.** We are currently publishing new releases to both `ghcr.io/museofficial/muse` and `codetheweb/muse`, but this may change in the future.
|
||||||
|
> Thank you to all the people who stepped up to help maintain Muse!
|
||||||
|
|
||||||
------
|
------
|
||||||
|
|
||||||
|
@ -42,7 +44,7 @@ A 64-bit OS is required to run Muse.
|
||||||
|
|
||||||
The `master` branch acts as the developing / bleeding edge branch and is not guaranteed to be stable.
|
The `master` branch acts as the developing / bleeding edge branch and is not guaranteed to be stable.
|
||||||
|
|
||||||
When running a production instance, I recommend that you use the [latest release](https://github.com/codetheweb/muse/releases/).
|
When running a production instance, I recommend that you use the [latest release](https://github.com/museofficial/muse/releases/).
|
||||||
|
|
||||||
|
|
||||||
### 🐳 Docker
|
### 🐳 Docker
|
||||||
|
@ -56,7 +58,7 @@ There are a variety of image tags available:
|
||||||
(Replace empty config strings with correct values.)
|
(Replace empty config strings with correct values.)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -it -v "$(pwd)/data":/data -e DISCORD_TOKEN='' -e SPOTIFY_CLIENT_ID='' -e SPOTIFY_CLIENT_SECRET='' -e YOUTUBE_API_KEY='' codetheweb/muse:latest
|
docker run -it -v "$(pwd)/data":/data -e DISCORD_TOKEN='' -e SPOTIFY_CLIENT_ID='' -e SPOTIFY_CLIENT_SECRET='' -e YOUTUBE_API_KEY='' ghcr.io/museofficial/muse:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
This starts Muse and creates a data directory in your current directory.
|
This starts Muse and creates a data directory in your current directory.
|
||||||
|
@ -68,7 +70,7 @@ version: '3.4'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
muse:
|
muse:
|
||||||
image: codetheweb/muse:latest
|
image: ghcr.io/museofficial/muse:latest
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- ./muse:/data
|
- ./muse:/data
|
||||||
|
@ -85,13 +87,13 @@ services:
|
||||||
* Node.js (18.17.0 or later is required and latest 18.x.x LTS is recommended)
|
* Node.js (18.17.0 or later is required and latest 18.x.x LTS is recommended)
|
||||||
* ffmpeg (4.1 or later)
|
* ffmpeg (4.1 or later)
|
||||||
|
|
||||||
1. `git clone https://github.com/codetheweb/muse.git && cd muse`
|
1. `git clone https://github.com/museofficial/muse.git && cd muse`
|
||||||
2. Copy `.env.example` to `.env` and populate with values
|
2. Copy `.env.example` to `.env` and populate with values
|
||||||
3. I recommend checking out a tagged release with `git checkout v[latest release]`
|
3. I recommend checking out a tagged release with `git checkout v[latest release]`
|
||||||
4. `yarn install` (or `npm i`)
|
4. `yarn install` (or `npm i`)
|
||||||
5. `yarn start` (or `npm run start`)
|
5. `yarn start` (or `npm run start`)
|
||||||
|
|
||||||
**Note**: if you're on Windows, you may need to manually set the ffmpeg path. See [#345](https://github.com/codetheweb/muse/issues/345) for details.
|
**Note**: if you're on Windows, you may need to manually set the ffmpeg path. See [#345](https://github.com/museofficial/muse/issues/345) for details.
|
||||||
|
|
||||||
## ⚙️ Additional configuration (advanced)
|
## ⚙️ Additional configuration (advanced)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "muse",
|
"name": "muse",
|
||||||
"version": "2.9.1",
|
"version": "2.9.1",
|
||||||
"description": "🎧 a self-hosted Discord music bot that doesn't suck ",
|
"description": "🎧 a self-hosted Discord music bot that doesn't suck ",
|
||||||
"repository": "git@github.com:codetheweb/muse.git",
|
"repository": "git@github.com:museofficial/muse.git",
|
||||||
"author": "Max Isom <hi@maxisom.me>",
|
"author": "Max Isom <hi@maxisom.me>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
|
|
@ -40,5 +40,5 @@ export default async (guild: Guild): Promise<void> => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const owner = await guild.fetchOwner();
|
const owner = await guild.fetchOwner();
|
||||||
await owner.send('👋 Hi! Someone (probably you) just invited me to a server you own. By default, I\'m usable by all guild member in all guild channels. To change this, check out the wiki page on permissions: https://github.com/codetheweb/muse/wiki/Configuring-Bot-Permissions.');
|
await owner.send('👋 Hi! Someone (probably you) just invited me to a server you own. By default, I\'m usable by all guild member in all guild channels. To change this, check out the wiki page on permissions: https://github.com/museofficial/muse/wiki/Configuring-Bot-Permissions.');
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue