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
| { | |
| "meta": { | |
| "theme": "monochrome-noir" | |
| }, | |
| "basics": { | |
| "name": "Pedro A. S. Benevides", | |
| "email": "pedro.augusto.sb@gmail.com", | |
| "phone": "+351 914-380-408", | |
| "summary": "Senior Software Engineer with over a decade of experience, primarily in high-growth startup environments. Expert in scaling web applications from initial development to global cloud deployment. Proven track record managing systems with 1 million daily active users and executing massive 30 TB database migrations with minimal downtime.", | |
| "location": { |
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 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, |