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
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,16 +9,16 @@ A (much simplified) port of a famous adventure game to help teach my daughter ho
9
9
10
10
Two easy ways to launch the console project:
11
11
12
-
1. Click on the Open with GitHub Codespaces badge above to launch the project in a browser or on your desktop inside Visual Studio Code, then type `poetry run python zorkdemo.py` in the terminal window.
12
+
1. Click on the Open with GitHub Codespaces badge above to launch the project in a browser or on your desktop inside Visual Studio Code, then type `uv run python zorkdemo.py` in the terminal window.
13
13
2. Download one of the binary releases and run the file on your system.
14
14
15
15
NOTE: the MacOS version does not have code signing built into it yet (that's next on my list!). To run it, you will need to set the binary as executable with `chmod 755` or similar, and after trying to run it once, go through System Preferences: Security and Privacy: General and "Allow the program to run anyway".
16
16
17
17
## Web (Hug) version
18
18
19
-
* Install [Python](https://www.python.org) 3.8.1 or higher
20
-
* Install [Poetry](https://python-poetry.org)
21
-
* At a command prompt in the project directory, type `poetry install` to set up dependencies
19
+
* Install [Python](https://www.python.org) 3.10 or higher
20
+
* Install [uv](https://docs.astral.sh/uv/)
21
+
* At a command prompt in the project directory, type `uv sync --all-groups` to set up dependencies
22
22
23
23
Next. set the flask application environment variables:
24
24
@@ -39,7 +39,7 @@ EXPORT SECRET_KEY="<put something random here>"
0 commit comments