Skip to content

Commit 2732a1b

Browse files
committed
Add config.yml for GitHub Actions, move example to docs
- Commit production config.yml (single test repo for now) - Move config.example.yml to docs/ - Remove config.yml from .gitignore
1 parent ca161ab commit 2732a1b

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ htmlcov/
5050
.env.*.local
5151

5252
# Configuration (local overrides)
53-
config.yml
5453
config.local.yml
5554

5655
# AWS credentials

config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# QuantEcon Repository Backup Configuration
2+
3+
backup:
4+
enabled: true
5+
organization: "QuantEcon"
6+
7+
# Repository name patterns (Python regex)
8+
patterns:
9+
- "^continuous_time_mcs$" # Test with single repo
10+
# - "lecture-.*" # lecture-python.myst, lecture-julia, etc.
11+
# - "quantecon-.*" # quantecon-notebooks-python, etc.
12+
13+
# AWS S3 configuration
14+
s3:
15+
bucket: "backup-quantecon-github"
16+
region: "us-east-1"
17+
prefix: ""
18+
19+
logging:
20+
level: "INFO"

0 commit comments

Comments
 (0)