-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0532a13
Showing
108 changed files
with
15,875 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"template": "https://github.com/radix-ai/poetry-cookiecutter", | ||
"commit": "0168710e9b56ab046cd2cf34b60866805ec41f58", | ||
"checkout": null, | ||
"context": { | ||
"cookiecutter": { | ||
"package_name": "rdddy", | ||
"package_description": "Reactive DDD framework with DSPy", | ||
"package_url": "https://github.com/chatmangpt/rdddy", | ||
"author_name": "Sean Chatman", | ||
"author_email": "[email protected]", | ||
"python_version": "3.10", | ||
"docker_image": "python:3.10-slim", | ||
"development_environment": "simple", | ||
"with_conventional_commits": "0", | ||
"with_fastapi_api": "1", | ||
"with_jupyter_lab": "0", | ||
"with_pydantic_typing": "1", | ||
"with_sentry_logging": "0", | ||
"with_streamlit_app": "1", | ||
"with_typer_cli": "1", | ||
"continuous_integration": "GitHub", | ||
"docstring_style": "Google", | ||
"private_package_repository_name": "", | ||
"private_package_repository_url": "", | ||
"__package_name_kebab_case": "rdddy", | ||
"__package_name_snake_case": "rdddy", | ||
"_template": "https://github.com/radix-ai/poetry-cookiecutter" | ||
} | ||
}, | ||
"directory": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"name": "rdddy", | ||
"dockerComposeFile": "../docker-compose.yml", | ||
"service": "devcontainer", | ||
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}/", | ||
"remoteUser": "user", | ||
"overrideCommand": true, | ||
"postStartCommand": "cp --update /opt/build/poetry/poetry.lock /workspaces/${localWorkspaceFolderBasename}/ && mkdir -p /workspaces/${localWorkspaceFolderBasename}/.git/hooks/ && cp --update /opt/build/git/* /workspaces/${localWorkspaceFolderBasename}/.git/hooks/", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"charliermarsh.ruff", | ||
"ms-python.mypy-type-checker", | ||
"ms-python.python", | ||
"ryanluker.vscode-coverage-gutters", | ||
"tamasfe.even-better-toml", | ||
"visualstudioexptteam.vscodeintellicode" | ||
], | ||
"settings": { | ||
"coverage-gutters.coverageFileNames": [ | ||
"reports/coverage.xml" | ||
], | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": true, | ||
"source.organizeImports": true | ||
}, | ||
"editor.formatOnSave": true, | ||
"[python]": { | ||
"editor.defaultFormatter": "charliermarsh.ruff" | ||
}, | ||
"[toml]": { | ||
"editor.formatOnSave": false | ||
}, | ||
"editor.rulers": [ | ||
100 | ||
], | ||
"files.autoSave": "onFocusChange", | ||
"mypy-type-checker.importStrategy": "fromEnvironment", | ||
"python.defaultInterpreterPath": "/opt/rdddy-env/bin/python", | ||
"python.terminal.activateEnvironment": false, | ||
"python.testing.pytestEnabled": true, | ||
"ruff.importStrategy": "fromEnvironment", | ||
"terminal.integrated.defaultProfile.linux": "zsh", | ||
"terminal.integrated.profiles.linux": { | ||
"zsh": { | ||
"path": "/usr/bin/zsh" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Caches | ||
.*_cache/ | ||
|
||
# Git | ||
.git/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Deploy | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
required: true | ||
description: Deployment environment | ||
default: development | ||
type: choice | ||
options: | ||
- feature | ||
- development | ||
- test | ||
- acceptance | ||
- production | ||
|
||
env: | ||
DEFAULT_DEPLOYMENT_ENVIRONMENT: feature | ||
DOCKER_REGISTRY: ghcr.io | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
if: startsWith(github.ref, 'refs/tags/v') | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Log in to the Docker registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ env.DOCKER_REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Set Docker image tag | ||
run: echo "GIT_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: true | ||
tags: | | ||
${{ env.DOCKER_REGISTRY }}/${{ github.repository_owner }}/${{ github.repository }}:${{ github.event.inputs.environment || env.DEFAULT_DEPLOYMENT_ENVIRONMENT }} | ||
${{ env.DOCKER_REGISTRY }}/${{ github.repository_owner }}/${{ github.repository }}:${{ env.GIT_TAG }} | ||
target: app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.10"] | ||
|
||
name: Python ${{ matrix.python-version }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 21 | ||
|
||
- name: Install @devcontainers/cli | ||
run: npm install --location=global @devcontainers/[email protected] | ||
|
||
- name: Start Dev Container | ||
run: | | ||
git config --global init.defaultBranch main | ||
PYTHON_VERSION=${{ matrix.python-version }} devcontainer up --workspace-folder . | ||
- name: Lint package | ||
run: devcontainer exec --workspace-folder . poe lint | ||
|
||
- name: Test package | ||
run: devcontainer exec --workspace-folder . poe test | ||
|
||
- name: Upload coverage | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
files: reports/coverage.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Coverage.py | ||
htmlcov/ | ||
reports/ | ||
|
||
# cruft | ||
*.rej | ||
|
||
# Data | ||
*.csv* | ||
*.dat* | ||
*.pickle* | ||
*.xls* | ||
*.zip* | ||
data/ | ||
|
||
# direnv | ||
.envrc | ||
|
||
# dotenv | ||
.env | ||
|
||
# Hypothesis | ||
.hypothesis/ | ||
|
||
# Jupyter | ||
*.ipynb | ||
.ipynb_checkpoints/ | ||
notebooks/ | ||
|
||
# macOS | ||
.DS_Store | ||
|
||
# mypy | ||
.dmypy.json | ||
.mypy_cache/ | ||
|
||
# Node.js | ||
node_modules/ | ||
|
||
# Poetry | ||
.venv/ | ||
dist/ | ||
|
||
# PyCharm | ||
.idea/ | ||
|
||
# pyenv | ||
.python-version | ||
|
||
# pytest | ||
.pytest_cache/ | ||
|
||
# Python | ||
__pycache__/ | ||
*.py[cdo] | ||
|
||
# Ruff | ||
.ruff_cache/ | ||
|
||
# Terraform | ||
.terraform/ | ||
|
||
# VS Code | ||
.vscode/ | ||
|
||
.choma/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# https://pre-commit.com | ||
default_install_hook_types: [commit-msg, pre-commit] | ||
default_stages: [commit, manual] | ||
fail_fast: true | ||
repos: | ||
- repo: meta | ||
hooks: | ||
- id: check-useless-excludes | ||
- repo: https://github.com/pre-commit/pygrep-hooks | ||
rev: v1.10.0 | ||
hooks: | ||
- id: python-check-mock-methods | ||
- id: python-use-type-annotations | ||
- id: rst-backticks | ||
- id: rst-directive-colons | ||
- id: rst-inline-touching-normal | ||
- id: text-unicode-replacement-char | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-added-large-files | ||
- id: check-ast | ||
- id: check-builtin-literals | ||
- id: check-case-conflict | ||
- id: check-docstring-first | ||
- id: check-json | ||
- id: check-merge-conflict | ||
- id: check-shebang-scripts-are-executable | ||
- id: check-symlinks | ||
- id: check-toml | ||
- id: check-vcs-permalinks | ||
- id: check-xml | ||
- id: check-yaml | ||
- id: debug-statements | ||
- id: destroyed-symlinks | ||
- id: detect-private-key | ||
- id: end-of-file-fixer | ||
types: [python] | ||
- id: fix-byte-order-marker | ||
- id: mixed-line-ending | ||
- id: name-tests-test | ||
args: [--pytest-test-first] | ||
- id: trailing-whitespace | ||
types: [python] | ||
- repo: local | ||
hooks: | ||
- id: ruff-check | ||
name: ruff check | ||
entry: ruff check | ||
args: ["--force-exclude", "--extend-fixable=F401,F841", "--fix-only"] | ||
require_serial: true | ||
language: system | ||
types_or: [python, pyi] | ||
- id: ruff-format | ||
name: ruff format | ||
entry: ruff format | ||
args: [--force-exclude] | ||
require_serial: true | ||
language: system | ||
types_or: [python, pyi] | ||
- id: poetry-check | ||
name: poetry check | ||
entry: poetry check | ||
language: system | ||
pass_filenames: false | ||
- id: mypy | ||
name: mypy | ||
entry: mypy | ||
language: system | ||
types: [python] |
Oops, something went wrong.