Add auto-start script

This commit is contained in:
Gabriel Tofvesson 2023-02-25 23:33:57 +01:00
parent e56badd200
commit 0263595806
No known key found for this signature in database
GPG Key ID: 6F1345DF28EDA13E
2 changed files with 20 additions and 0 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ Cargo.lock
**/*.rs.bk **/*.rs.bk
.vscode/ .vscode/
Notes.md Notes.md
openai.sk

19
start.sh Executable file
View File

@ -0,0 +1,19 @@
#!/bin/zsh
if ! [ -f "target/release/ai_chat" ]; then
if ! cargo build --release; then
echo "Could not build binary! Press any key to exit..." >&2
read
exit
fi
fi
if ! [ -f "openai.sk" ]; then
echo -n "Enter OpenAI secret key: "
read -s OPENAI_SK
else
OPENAI_SK="$(cat openai.sk)"
fi
export OPENAI_SK
target/release/ai_chat