Skip to content

Instantly share code, notes, and snippets.

View tomburge's full-sized avatar
🏠

Tom Burge tomburge

🏠
View GitHub Profile
@tomburge
tomburge / .readthedocs.yaml
Created June 19, 2024 00:19
readthedocs sample yaml config file
build:
apt_packages:
- graphviz
commands: # When using this option, none of the commands from build.jobs will be executed
- echo "This is a command"
jobs:
post_checkout:
- echo "This is a post-checkout job"
pre_system_dependencies:
- echo "This is a pre-system-dependencies job"
@tomburge
tomburge / sphinx_config.py
Last active June 19, 2024 00:18
sphinx config file 7.3.7
from pathlib import Path
CURRENT_DIR = Path(__file__).parent
# Global Variables
author_name = "author name"
project_name = "project name"
release_name = "1.0.0"
version_name = "1"
@tomburge
tomburge / gist:65280e05d2bfd308f78c4b5704dfe826
Last active October 31, 2023 19:43
terraform-aws-s3-10-31-2023-bug
provider.tf:
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
}
}