- Download docker-compose.yml to dir named
sentry
- Change
SENTRY_SECRET_KEY
to random 32 char string - Run
docker-compose up -d
- Run
docker-compose exec sentry sentry upgrade
to setup database and create admin user - (Optional) Run
docker-compose exec sentry pip install sentry-slack
if you want slack plugin, it can be done later - Run
docker-compose restart sentry
- Sentry is now running on public port
9000
$ uname -r
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<spocosy version="1.0"><subscription-update subscriptionid="8" requestid="9902555" last_push="2017-10-18 18:55:59" current_push="2017-10-18 18:56:02" exec="0.003"><lineup id="11070849" event_participantsFK="8722244" participantFK="662831" lineup_typeFK="5" shirt_number="0" pos="0" enet_pos="18" n="0" ut="2017-10-18 18:56:01" del="no"/></subscription-update></spocosy> |
This file contains 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 json | |
import codecs | |
import ssl | |
import sys | |
import urllib.request | |
import xml.etree.ElementTree as Tree | |
from collections import namedtuple | |
_DEFAULT_TEST_URL = 'https://anspedite-3.atlassian.net' |
This file contains 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 sys | |
import xml.etree.ElementTree as Tree | |
import urllib2 | |
import ssl | |
import json | |
from collections import namedtuple | |
#_DEFAULT_TEST_URL = 'https://anspedite-3.atlassian.net' | |
_DEFAULT_TEST_URL = 'http://pc1:2990/jira' |
This file contains 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
// php composer require ivkos/pushbullet | |
$pb = new \Pushbullet\Pushbullet('ACCESS_KEY_HERE'); // can be founded here https://www.pushbullet.com/account | |
$pb->allDevices()->pushNote("Hello world!", "Lorem ipsum..."); |