- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyour_program.sh
More file actions
Latest commit
executable file
·20 lines (18 loc) · 553 Bytes
/
Copy pathyour_program.sh
File metadata and controls
executable file
·20 lines (18 loc) · 553 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
#
# Use this script to run your program LOCALLY.
#
# Note: Changing this script WILL NOT affect how CodeCrafters runs your program.
#
# Learn more: https://codecrafters.io/program-interface
set -e # Exit early if any commands fail
# Copied from .codecrafters/run.sh
#
# - Edit this to change how your program runs locally
# - Edit .codecrafters/run.sh to change how your program runs remotely
SCRIPT_DIR="$(dirname "$0")"
PYTHONSAFEPATH=1 PYTHONPATH="$SCRIPT_DIR"exec uv run \
--project "$SCRIPT_DIR" \
--quiet \
-m app.main \
"$@"