Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .adr-dir
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
docs/decisions
45 changes: 45 additions & 0 deletions .github/ISSUE_TEMPLATE/architecture-question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
name: Architecture Question
about: Ask the architecture board for guidance or consultation
title: ''
labels: architecture-question
assignees: ''
---

## What do you need help with?

<!--
No question is too small! We'd rather you ask early than fix expensive mistakes later.

Examples:
- "Should I use REST or GraphQL for this API?"
- "How do I integrate with the user portal?"
- "Is there a standard for sample metadata?"
- "Can you review my design?"
-->

## Context

<!-- What are you building or planning? Any background that helps us understand? -->

## What you've considered (optional)

<!--
If you've thought about options, share them. If not, that's totally fine!
We're here to help you think through it.
-->

## Timeline

<!-- When do you need guidance? No pressure, just helps us prioritize. -->

## Additional Information

<!-- Anything else that might be helpful? Diagrams, links, examples? -->

---

💡 **Tip:** For urgent requests, add the `urgent` label. For decisions affecting all platforms, consider adding `high-impact`.

🤝 **We're here to help!** Response time target: 2 weeks for initial feedback.

61 changes: 61 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Quarto build outputs
_site/
.quarto/

# R
.Rhistory
.RData
.Rproj.user

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/

# Jupyter Notebooks
.ipynb_checkpoints
*/.ipynb_checkpoints/*

# macOS
.DS_Store
.AppleDouble
.LSOverride

# Linux
*~
.directory
.Trash-*

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/

# IDEs and Editors
.vscode/
.idea/
*.swp
*.swo
*~
.project
.settings/
.classpath

# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Temporary files
*.tmp
*.temp
*.bak
*.backup

Loading