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
{ | |
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | |
"version": 1, | |
"newProjectRoot": "projects", | |
"projects": { | |
"data-dic-app": { | |
"projectType": "application", | |
"schematics": {}, | |
"root": "", | |
"sourceRoot": "src", |
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
""" | |
Original code is from pythoncircle.com | |
https://www.pythoncircle.com/post/522/python-script-7-scraping-tweets-using-beautifulsoup/#new_comment_522 | |
Modern python is good to go with Python 3.* | |
Python 2.7 is nearing End of Life soon. | |
Error Observed | |
"bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library? | |
" |
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
##### Main reference is https://www.pomerium.io/docs/reference/examples.html#docker | |
# Main configuration flags : https://www.pomerium.io/docs/reference/reference/ | |
# | |
# address: ":8443" # optional, default is 443 | |
pomerium_debug: true # optional, default is false | |
# service: "all" # optional, default is all | |
# log_level: info # optional, default is debug | |
authenticate_service_url: https://authenticate.company.com |
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
authenticate_service_url: https://authenticate.company.com:9001 | |
idp_provider: google | |
idp_client_id: Some generated id | |
idp_client_secret: some secret | |
policy: | |
- from: https://internal.company.com:9001 |