- Download docker-compose.yml to dir named
sentry
- Change SENTRY_SECRET_KEY to random 32 char string
- Run
docker-compose up -d
- Run
docker exec -it sentry_sentry_1 sentry upgrade
to setup database and create admin user - Run
docker exec -it pip install sentry-slack
if you want slack plugin, it can be done later - Run
docker restart sentry_sentry_1
- Sentry is now running on public port 9000
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -xe | |
set -ex | |
if [[ -z "$SYNC_GH_ORG" ]]; then | |
read -p "Enter Github Org: " SYNC_GH_ORG | |
fi | |
if [[ -z "$SYNC_GH_TEAM" ]]; then | |
read -p "Enter Github Team: " SYNC_GH_TEAM | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests, shutil | |
binary_type = 'server' # or 'client' | |
version_type = 'release' # or 'snapshot' | |
manifest = requests.get("https://launchermeta.mojang.com/mc/game/version_manifest.json").json() | |
version_id = manifest['latest'][version_type] | |
print "Latest {}: {}".format(version_type, version_id) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"os" | |
"io" | |
"syscall" | |
"time" | |
"bytes" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Server.properties genereted by Craftures | |
generator-settings= | |
level-name=world | |
level-seed= | |
level-type=DEFAULT | |
motd=Map Name @ Craftures.com | |
rcon.password= | |
resource-pack=<resource-pack-url-if-uploaded-with-map> | |
server-ip=127.0.0.1 | |
difficulty=1 |