38 lines
732 B
Plaintext
38 lines
732 B
Plaintext
run = "python3 main.py"
|
|
language = "python3"
|
|
entrypoint = "main.py"
|
|
|
|
hidden = ["**/__pycache__", "**/.mypy_cache", "**/*.pyc"]
|
|
|
|
[nix]
|
|
channel = "stable-22_11"
|
|
|
|
[interpreter]
|
|
[interpreter.command]
|
|
args = [
|
|
"stderred",
|
|
"--",
|
|
"prybar-python310",
|
|
"-q",
|
|
"--ps1",
|
|
"\u0001\u001b[33m\u0002\u0001\u001b[00m\u0002 ",
|
|
"-i",
|
|
]
|
|
env = { LD_LIBRARY_PATH = "$PYTHON_LD_LIBRARY_PATH" }
|
|
|
|
[env]
|
|
VIRTUAL_ENV = "/home/runner/${REPL_SLUG}/venv"
|
|
PATH = "${VIRTUAL_ENV}/bin"
|
|
PYTHONPATH = "${VIRTUAL_ENV}/lib/python3.10/site-packages"
|
|
|
|
[gitHubImport]
|
|
requiredFiles = [".replit", "replit.nix", ".config", "venv"]
|
|
|
|
[languages]
|
|
|
|
[languages.python3]
|
|
pattern = "**/*.py"
|
|
|
|
[languages.python3.languageServer]
|
|
start = "pylsp"
|