-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Python Tour of Restate #444
Conversation
Deploying documentation with Cloudflare Pages
|
Co-authored-by: Francesco Guardiani <[email protected]>
The durable animation here still uses typescript code |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
skimmed through it, looks good
I have it on my planning to make this animation work for smaller screens. But I don't think I will replicate it for each language. I think the gist is clear no matter the exact language used |
# Setup Python | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
|
||
# Test if Python code snippets compile | ||
- name: Install dependencies and check Python code snippets | ||
run: | | ||
cd code_snippets/python | ||
python3 -m venv .venv | ||
source .venv/bin/activate | ||
pip install -r requirements.txt | ||
pip install mypy | ||
python3 -m mypy . | ||
deactivate | ||
|
||
# Setup Java |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems to me this is not running?!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Solved it in another PR
# Conflicts: # code_snippets/go/go.mod # code_snippets/go/go.sum # docs/get_started/tour.mdx # restate.config.json
No description provided.