Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
A reactive web app that displays a list of workers
  • Loading branch information
rjhuijsman committed Jan 21, 2025
1 parent cb29c68 commit d1e52df
Show file tree
Hide file tree
Showing 16 changed files with 741 additions and 597 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,15 @@ jobs:
uses: devcontainers/[email protected]
with:
runCmd: |
.tests/test.sh
# Set up our Python VirtualEnv.
rye sync --no-lock
source ./.venv/bin/activate
# Generate our libraries.
rbt protoc
# Check our types.
mypy backend/
# Run our unit tests.
pytest backend/
32 changes: 0 additions & 32 deletions .mergequeue/config.yml

This file was deleted.

13 changes: 8 additions & 5 deletions .rbtrc
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,18 @@ dev run --watch=backend/src/**/*.py
dev run --python

# Set the application name for commands that require it.
cloud up --name=hello
cloud down --name=hello
dev expunge --name=hello
dev run --name=hello
serve run --name=hello
cloud up --name=workers-demo
cloud down --name=workers-demo
dev expunge --name=workers-demo
dev run --name=workers-demo
serve run --name=workers-demo

# Run the application!
dev run --application=backend/src/main.py

# Don't do effect validation during a demo, it produces a bit more log spam than is attractive.
dev run --effect-validation=disabled

# Tell `rbt serve` that this is a Python application.
serve run --python

Expand Down
111 changes: 0 additions & 111 deletions .tests/serve_test.sh

This file was deleted.

54 changes: 0 additions & 54 deletions .tests/test.sh

This file was deleted.

Loading

0 comments on commit d1e52df

Please sign in to comment.