9 lines
157 B
Bash
Executable File
9 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Starting AI Tutor..."
|
|
echo "Use the url http://localhost:8501 to access the app"
|
|
echo ""
|
|
|
|
cd "$(dirname "$0")"
|
|
streamlit run day5_task.py
|