add jupyter notebook (#59)

This commit is contained in:
Muhammad Atif Ali
2023-09-28 21:14:31 +03:00
committed by GitHub
parent d9d646098e
commit 5e805fef02
9 changed files with 108 additions and 13 deletions

View File

@@ -41,9 +41,9 @@ done
if [ ! -f ~/.local/share/code-server/Machine/settings.json ]; then
echo "⚙️ Creating settings file..."
mkdir -p ~/.local/share/code-server/Machine
echo "${SETTINGS}" > ~/.local/share/code-server/Machine/settings.json
echo "${SETTINGS}" >~/.local/share/code-server/Machine/settings.json
fi
echo "👷 Running code-server in the background..."
echo "Check logs at ${LOG_PATH}!"
$CODE_SERVER --auth none --port ${PORT} >${LOG_PATH} 2>&1 &
$CODE_SERVER --auth none --port ${PORT} >${LOG_PATH} 2>&1 &