- 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
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Parent Document</title> | |
<script> | |
/** | |
* @link https://dev.to/admitkard/google-docs-url-tricks-and-tips-4d44 | |
* @link https://web.archive.org/web/20240523160018/https://dev.to/admitkard/google-docs-url-tricks-and-tips-4d44 | |
*/ |
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 | |
namespace App\Support\Request; | |
use Illuminate\Http\Testing\MimeType; | |
use Illuminate\Support\Str; | |
use Illuminate\Support\Arr; | |
use Illuminate\Validation\Validator ; | |
use Symfony\Component\HttpFoundation\File\UploadedFile; |
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
version: "3" | |
services: | |
vscode: | |
container_name: vscode" | |
hostname: vscode | |
image: codercom/code-server | |
environment: | |
PASSWORD: devingongoogle |
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
#!/bin/bash | |
Green_font="\033[32m" && Yellow_font="\033[33m" && Red_font="\033[31m" && Font_suffix="\033[0m" | |
Info="${Green_font}[Info]${Font_suffix}" | |
Error="${Red_font}[Error]${Font_suffix}" | |
NGX_DIR=/www/server/nginx | |
NPS_VESION=1.13.35.2-stable | |
echo -e "${Green_font} | |
#======================================= | |
# Project: nps-auto |
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 | |
/* | |
* Name: wordpress assist clean header | |
* Source: https://gist.github.com/Auke1810/f2a4cf04f2c07c74a393a4b442f22267 | |
* Date: 2020-07-25 | |
*/ | |
remove_action('wp_head', 'rsd_link'); // remove really simple discovery link | |
remove_action('wp_head', 'wp_generator'); // remove wordpress version |
- Laravel Package Docs - Full guide how create a Laravel Package
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
#!/bin/bash | |
# Adicione um novo remote; pode chamá-lo de "upstream": | |
git remote add upstream https://github.com/usuario/projeto.git | |
# Obtenha todos os branches deste novo remote, | |
# como o upstream/master por exemplo: | |
git fetch upstream |
Instruções de como instalar aqui https://github.com/FiloSottile/mkcert
No Ubuntu o root CA gerado é no arquivo .pem
, e o Windows não aceita este formato, por isso usar o .pfx
. O site sslshopper.com faz isto online, mas é recomendado fazer pelo openssl
.
cd ~/.local/share/mkcert
openssl pkcs12 -export -out rootCA.pfx -inkey rootCA-key.pem -in rootCA.pem
Baixe o arquivo rootCA.pfx
gerado para importação no Windows.
NewerOlder