7 lines
244 B
Bash
Executable File
7 lines
244 B
Bash
Executable File
#!/bin/sh
|
|
BASEDIR=$(dirname "$0")
|
|
cd "$BASEDIR" || exit
|
|
# Lately path is not considering homebrew install, so we add it manually
|
|
export PATH=%PATH:"$HOME"/.local/bin/:/Library/Frameworks/Python.framework/Versions/3.12/bin/
|
|
uv run src/server.py
|