Skip to content

Instantly share code, notes, and snippets.

View pedroaugusto's full-sized avatar

Pedro Benevides pedroaugusto

View GitHub Profile
{
"meta": {
"theme": "onepage-plus"
},
"basics": {
"name": "Pedro Augusto Soares Benevides",
"email": "pedro.augusto.sb@gmail.com",
"phone": "+351 914-380-408",
"url": "https://registry.jsonresume.org/pedroaugusto",
"summary": "As a Full-Stack Software Engineer with over a decade of experience, I've primarily contributed to startup environments, playing a key role in shaping the software architectures and establishing the software engineering practices. I bring extensive experience in web applications, from their initial development stages to cloud deployment and scaling.",
@pedroaugusto
pedroaugusto / configure.py
Created August 10, 2022 15:49
Configure custom slack Oauth Install page using Bolt Django
import slack_bolt.oauth.oauth_flow
from slack_bolt.oauth.oauth_flow import OAuthFlow
from slack_bolt.request import BoltRequest
class CustomPageOauthFlow(OAuthFlow):
def build_install_page_html(self, url: str, request: BoltRequest) -> str:
return 'Hello world!'
settings=OAuthSettings(
client_id=client_id,