This is a simple Python project using Poetry, configured for development in GitHub Codespaces.
- Open this repository in GitHub Codespaces or locally using VS Code with the Remote - Containers extension.
- The development container will automatically set up the Python environment with Poetry.
- Open a terminal and run
poetry shellto activate the virtual environment. - Run
python app.pyto execute the sample script.
- Use
poetry add <package>to add new dependencies. - Use
poetry run pytestto run tests (once you've added some).
Happy coding!