Skip to content

Commit

Permalink
Merge branch 'main' into docs/add-underscore-to-unfinished-why-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Beicher authored Jun 11, 2024
2 parents b181c4e + 1dee7ea commit c6c0c01
Show file tree
Hide file tree
Showing 69 changed files with 3,147 additions and 885 deletions.
4 changes: 3 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@
justfile
.editorconfig
.gitignore
ruff.toml
ruff.toml
pyproject.toml
poetry.lock
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ junit/

# Quarto
/.quarto/
docs/.quarto/

# Website generation
_site
Expand All @@ -86,9 +87,14 @@ site

# Local data files
**/datafile/*
# Persistent storage should not be stored in git except for the markdown files
persistent_storage
!persistent_storage/**/*.md

# Python Django
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# We'll disable migrations for now, until we have actual users
migrations
11 changes: 5 additions & 6 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"jebbs.plantuml",
Expand All @@ -19,10 +18,10 @@
"vivaxy.vscode-conventional-commits",
"charliermarsh.ruff",
"pshaddel.conventional-branch",
"yy0931.vscode-sqlite3-editor"
"yy0931.vscode-sqlite3-editor",
"junstyle.vscode-django-support",
"monosans.djlint"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [

]
}
"unwantedRecommendations": []
}
94 changes: 44 additions & 50 deletions .vscode/json.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,15 @@

"Insert YAML header for blogs": {
"scope": "quarto,markdown",
"prefix": "yaml_blog",
"prefix": "post_yaml",
"body": [
"---"
"title: \"\""
"description: \"Our reasons for ...\""
"author: \"\""
"date: last-modified"
"categories:"
" ${0:Type 'category_keywords' to insert categories}"
"---"
],
"description": "Insert YAML header for Quarto blog posts."
Expand Down Expand Up @@ -112,55 +113,48 @@
// The idea is that we can insert this section and then delete the words we aren't interested in
// If words are missing then they can be added to the document, and then also added to the code snippet
// Much the same way that words can be added to the spell-check extension.
"Insert title section with list of category words": {
"scope": "quarto,markdown",
"prefix": "ttl_sec_cat",
"Insert list of category words": {
"scope": "quarto,markdown,yaml",
"prefix": "category_keywords",
"body": [
"---"
"title: \"\""
"description: \"Our reasons for ...\""
"author: \"\""
"date: last-modified"
"categories:"
" - api"
" - backend"
" - blogs"
" - code snippets"
" - communication"
" - container"
" - contributing"
" - copyright"
" - culture"
" - database"
" - development"
" - documentation"
" - frontend"
" - github"
" - implementation"
" - installation"
" - licensing"
" - management"
" - markdown"
" - organization"
" - programming"
" - repositories"
" - reviewing"
" - software"
" - software architecture"
" - standardisation"
" - structure"
" - team work"
" - teamworking"
" - technology"
" - templates"
" - tools"
" - vs code"
" - web"
" - website"
" - workflow"
" - writing"
"---"
"- api"
"- backend"
"- blogs"
"- code snippets"
"- communication"
"- container"
"- contributing"
"- copyright"
"- culture"
"- database"
"- development"
"- documentation"
"- frontend"
"- github"
"- implementation"
"- installation"
"- licensing"
"- management"
"- markdown"
"- organization"
"- programming"
"- repositories"
"- reviewing"
"- software"
"- software architecture"
"- standardisation"
"- structure"
"- team work"
"- teamworking"
"- technology"
"- templates"
"- tools"
"- vs code"
"- web"
"- website"
"- workflow"
"- writing"
],
"description": "Insert title with category words"
"description": "Insert list of category words"
}
}
}
17 changes: 15 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"editor.tabSize": 2,
"editor.wordWrap": "off",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
},
"git.autofetch": false,
"quarto.visualEditor.markdownWrap": "column",
"quarto.visualEditor.markdownWrapColumn": 72,
Expand All @@ -23,5 +26,15 @@
"conventional-branch.format": "{Type}/{Branch}",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
}
}
},
"[html][django-html]": {
"editor.defaultFormatter": "monosans.djlint"
},
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
"python.languageServer": "Pylance",
"files.insertFinalNewline": true,
"cSpell.enableFiletypes": [
"quarto"
],
"cSpell.language": "en,en-GB",
}
9 changes: 7 additions & 2 deletions _extensions/seedcase-project/seedcase-theme/_extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ contributes:
html:
from: markdown+emoji
theme:
- zephyr
- cosmo
- theme.scss
toc: true
toc-location: right
Expand All @@ -19,12 +19,17 @@ contributes:
execute-dir: project

website:
page-navigation: true
favicon: favicon/favicon.ico
repo-branch: main
repo-actions: [edit, issue, source]
search:
location: navbar
type: overlay
navbar:
background: light
logo: logos/navbar-logo-seedcase-project.svg

csl: vancouver.csl

format: seedcase-theme-html
format: seedcase-theme-html
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions _extensions/seedcase-project/seedcase-theme/logos/garden-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit c6c0c01

Please sign in to comment.