Created
July 17, 2025 16:25
-
-
Save pathikrit/61de19421a19a30eeb9b7dc44b3d24cc to your computer and use it in GitHub Desktop.
New Python Project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
PROJECT=$1 | |
uv init $PROJECT | |
cd $PROJECT | |
git init | |
touch .env | |
curl -o .gitignore https://raw.githubusercontent.com/github/gitignore/refs/heads/main/Python.gitignore | |
uv add marimo pydantic polars | |
uv tool install ruff | |
uv run marimo edit hello.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment