You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-8
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ This method requires running [VSCode](https://code.visualstudio.com/) on your ma
29
29
This repository includes a [Dev Container config](./.devcontainer/devcontainer.json) (more about [Dev Containers](https://containers.dev/)) that declares all of the dependencies that you need to build and run the example. Dev Containers can be started locally with VSCode, but we recommend using GitHub's [Codespaces](https://github.com/features/codespaces) to quickly launch the Dev Container:
30
30
31
31
1. Right-click to create a Codespace in a new tab or window:
32
-
*[](https://codespaces.new/reboot-dev/reboot-todo-starter)
32
+
*[](https://codespaces.new/reboot-dev/reboot-todo-python)
33
33
**Important*: In order to view the example's front end, you must connect your local VSCode to the codespace: you cannot use VSCode in a browser window.
34
34
2. Go to [https://github.com/codespaces](https://github.com/codespaces) and click the three dots next to the codespace you just created and then click `Open in Visual Studio Code`.
35
35
* You can [set your default editor to VSCode for codespaces](https://docs.github.com/en/codespaces/customizing-your-codespace/setting-your-default-editor-for-github-codespaces) to avoid this step in the future. See [these instructions](https://docs.github.com/en/codespaces/developing-in-codespaces/opening-an-existing-codespace?tool=vscode) for more information.
@@ -44,8 +44,8 @@ Running directly on a host requires:
44
44
- A platform of either:
45
45
-`x86_64 Linux` with `glibc>=2.35` (Ubuntu Jammy and other equivalent-generation Linux distributions)
46
46
-`arm64 or x86_64 MacOS` with `MacOS>=13.0` and `Xcode>=14.3`
47
-
-Node.js
48
-
- Including `npm`.
47
+
-Python >=3.10
48
+
- Node.js (for the front end)
49
49
- Docker
50
50
- Note: the example does not run "inside of" Docker, but Docker is used to host a native support service for local development.
51
51
@@ -58,18 +58,19 @@ Now you're ready to [run the application](#run-the-application)!
58
58
59
59
### Backend
60
60
61
-
Our backend is implemented in TypeScript and we must install its dependencies before
61
+
Our backend is implemented in Python and we must install its dependencies before
0 commit comments