- Installing and configuring dependencies
- Creating a new database and assigning privileges
- Downloading latest BRS release
- Editing Burst node configuration file
- Running the node
I hereby claim:
- I am marianopw on github.
- I am mpw (https://keybase.io/mpw) on keybase.
- I have a public key ASARm0pL_QjdsW6l4Ba64J8lcclz0jCd1-iY6FYre4CtMQo
To claim this, I am signing this object:
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
#!/usr/bin/env bash | |
#Build and install neovim for Debian | |
#See: https://neovim.io/ | |
#See: https://github.com/neovim/neovim/wiki/Building-Neovim#quick-start | |
#Save current dir | |
pushd . > /dev/null | |
#Install dependencies |
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
# Source: https://gist.github.com/2e67c67a36a2e782422ebefb4a0a2612 | |
git clone https://github.com/vfarcic/devops-toolkit-crossplane | |
cd devops-toolkit-crossplane | |
# Create a local Kubernetes cluster. | |
kubectl create namespace crossplane-system |
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
#Nginx config used for api.solana-tds.everstake.one | |
# Tune timeouts for proxy | |
proxy_buffering off; | |
proxy_connect_timeout 360s; | |
proxy_send_timeout 360s; | |
proxy_read_timeout 700s; | |
proxy_next_upstream error timeout http_500 http_502 http_503 http_504; |