Skip to content

Commit 7796644

Browse files
committed
Add module 11 scripts for resource cleanup, validation, prerequisites check, and setup; update exercise README files
1 parent 37ff0e2 commit 7796644

File tree

117 files changed

+5765
-3639
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+5765
-3639
lines changed

.gitignore

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# Local tools and templates - DO NOT COMMIT
2+
templates/
3+
template/
4+
5+
# Reports and temporary files
6+
*-report.txt
7+
*-report-*.txt
8+
standardization-report.txt
9+
navigation-report.txt
10+
link-validation-report.txt
11+
complete-standardization-report-*.txt
12+
final-validation-*.txt
13+
fix-remaining-*.sh
14+
fix-remaining-*.md
15+
16+
# Backup directories
17+
*_backup_*/
18+
*_backup_*
19+
20+
# Python
21+
__pycache__/
22+
*.py[cod]
23+
*$py.class
24+
*.so
25+
.Python
26+
env/
27+
venv/
28+
ENV/
29+
.venv
30+
31+
# IDE
32+
.vscode/
33+
.idea/
34+
*.swp
35+
*.swo
36+
*~
37+
.DS_Store
38+
39+
# Logs
40+
*.log
41+
logs/
42+
43+
# Database
44+
*.db
45+
*.sqlite
46+
*.sqlite3
47+
48+
# Environment variables
49+
.env
50+
.env.local
51+
.env.*.local
52+
53+
# Node
54+
node_modules/
55+
npm-debug.log*
56+
yarn-debug.log*
57+
yarn-error.log*
58+
59+
# Terraform
60+
*.tfstate
61+
*.tfstate.*
62+
.terraform/
63+
.terraform.lock.hcl
64+
65+
# Docker
66+
docker-compose.override.yml
67+
68+
# Test coverage
69+
htmlcov/
70+
.coverage
71+
.coverage.*
72+
coverage.xml
73+
*.cover
74+
75+
# Build artifacts
76+
build/
77+
dist/
78+
*.egg-info/

LINK_INDEX.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

NAVIGATION.md

Lines changed: 0 additions & 166 deletions
This file was deleted.

0 commit comments

Comments
 (0)